Fix broken links in Javadoc
This commit removes several links that were broken due to the removal of various APIs in 6.0. See gh-27480
This commit is contained in:
@@ -62,11 +62,10 @@ import org.springframework.util.backoff.FixedBackOff;
|
||||
* abstraction. By default, the specified number of invoker tasks will be created
|
||||
* on startup, according to the {@link #setConcurrentConsumers "concurrentConsumers"}
|
||||
* setting. Specify an alternative {@code TaskExecutor} to integrate with an existing
|
||||
* thread pool facility (such as a Jakarta EE server's), for example using a
|
||||
* {@link org.springframework.scheduling.commonj.WorkManagerTaskExecutor CommonJ WorkManager}.
|
||||
* With a native JMS setup, each of those listener threads is going to use a
|
||||
* cached JMS {@code Session} and {@code MessageConsumer} (only refreshed in case
|
||||
* of failure), using the JMS provider's resources as efficiently as possible.
|
||||
* thread pool facility (such as a Jakarta EE server's). With a native JMS setup,
|
||||
* each of those listener threads is going to use a cached JMS {@code Session} and
|
||||
* {@code MessageConsumer} (only refreshed in case of failure), using the JMS provider's
|
||||
* resources as efficiently as possible.
|
||||
*
|
||||
* <p>Message reception and listener execution can automatically be wrapped
|
||||
* in transactions by passing a Spring
|
||||
@@ -224,7 +223,6 @@ public class DefaultMessageListenerContainer extends AbstractPollingMessageListe
|
||||
* will occupy a number of threads for its entire lifetime.
|
||||
* @see #setConcurrentConsumers
|
||||
* @see org.springframework.core.task.SimpleAsyncTaskExecutor
|
||||
* @see org.springframework.scheduling.commonj.WorkManagerTaskExecutor
|
||||
*/
|
||||
public void setTaskExecutor(Executor taskExecutor) {
|
||||
this.taskExecutor = taskExecutor;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2020 the original author or authors.
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -177,7 +177,6 @@ public class SimpleMessageListenerContainer extends AbstractMessageListenerConta
|
||||
* {@link jakarta.jms.MessageListener} will work fine, in general.
|
||||
* @see #setConcurrentConsumers
|
||||
* @see org.springframework.core.task.SimpleAsyncTaskExecutor
|
||||
* @see org.springframework.scheduling.commonj.WorkManagerTaskExecutor
|
||||
*/
|
||||
public void setTaskExecutor(Executor taskExecutor) {
|
||||
this.taskExecutor = taskExecutor;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -31,8 +31,6 @@ import jakarta.jms.Session;
|
||||
* @since 1.1
|
||||
* @see org.springframework.jms.core.JmsTemplate#setMessageConverter
|
||||
* @see org.springframework.jms.listener.adapter.MessageListenerAdapter#setMessageConverter
|
||||
* @see org.springframework.jms.remoting.JmsInvokerClientInterceptor#setMessageConverter
|
||||
* @see org.springframework.jms.remoting.JmsInvokerServiceExporter#setMessageConverter
|
||||
*/
|
||||
public interface MessageConverter {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user