Fix links to Spring AMQP's javadoc

Closes gh-41144
This commit is contained in:
Andy Wilkinson 2024-06-18 09:24:52 +01:00
parent d595487f72
commit 7c318be829

View File

@ -56,7 +56,7 @@ Spring's `AmqpTemplate` and `AmqpAdmin` are auto-configured, and you can autowir
include-code::MyBean[]
NOTE: {url-spring-amqp-javadoc}/rabbit/core/RabbitMessagingTemplate.html[`RabbitMessagingTemplate`] can be injected in a similar manner.
NOTE: {url-spring-amqp-javadoc}/org/springframework/amqp/rabbit/core/RabbitMessagingTemplate.html[`RabbitMessagingTemplate`] can be injected in a similar manner.
If a `MessageConverter` bean is defined, it is associated automatically to the auto-configured `AmqpTemplate`.
If necessary, any `org.springframework.amqp.core.Queue` that is defined as a bean is automatically used to declare a corresponding queue on the RabbitMQ instance.
@ -110,7 +110,7 @@ The following sample component creates a listener endpoint on the `someQueue` qu
include-code::MyBean[]
TIP: See {url-spring-amqp-javadoc}/rabbit/annotation/EnableRabbit.html[the Javadoc of `@EnableRabbit`] for more details.
TIP: See {url-spring-amqp-javadoc}/org/springframework/amqp/rabbit/annotation/EnableRabbit.html[the Javadoc of `@EnableRabbit`] for more details.
If you need to create more `RabbitListenerContainerFactory` instances or if you want to override the default, Spring Boot provides a `SimpleRabbitListenerContainerFactoryConfigurer` and a `DirectRabbitListenerContainerFactoryConfigurer` that you can use to initialize a `SimpleRabbitListenerContainerFactory` and a `DirectRabbitListenerContainerFactory` with the same settings as the factories used by the auto-configuration.