spring-multirabbit
spring-multirabbit copied to clipboard
Library to extend Spring to provide connection to multiple RabbitMQ brokers
if I'm not wrong the following setting is completely ignored : ``` my-rabbitmq-connection: host: localhost port: 5672 username: guest password: guest listener: simple: default-requeue-rejected: false ```
Thank you for being part of the Spring Boot community. As [described in the Spring Boot documentation](https://docs.spring.io/spring-boot/docs/2.5.2/reference/htmlsingle/#features.developing-auto-configuration.custom-starter.configuration-keys), configuration properties in third-party libraries should not use the `spring.` prefix. Similarly, third-party...
This is necessary for faster feedback to contributors on the styling of the project.
TBD: - double-check if SP works with the same beans
I've noticed that the Retry section in the RabbitProperties are not being configured (In fact, the whole Listener section), as it is configured in [AbstractRabbitListenerContainerFactoryConfigurer](https://github.com/spring-projects/spring-boot/blob/06398eabed523a4092495b3fb98790702a2a5076/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/AbstractRabbitListenerContainerFactoryConfigurer.java#L143) but is not considered in...
As per the implementation of `spring-amqp` in regards to the resolution of admin names, it's necessary to offer a way to inject optional aliases for shared RabbitAdmin to be resolved...
Hi, hope you're doing great. Is there any way to define a MessageConvert for each Connection? Right now we have two Connections and we need to parse their messages using...
As per GH-18, the approach of injecting the `RabbitAdmin` into the `setAdminsThatShouldDeclare()` was changed to avoid premature initialization of the `RabbitAdmin` bean. The change was to inject the name of...
This issue comes from the changes in `spring-amqp` that enforces all child connection factories to follow the same configuration as the routing connection factory for `checkConfirmsAndReturns()` ([here](https://github.com/spring-projects/spring-amqp/blame/e382f67325ebf950212630ea45d1eaf4027b7ea8/spring-rabbit/src/main/java/org/springframework/amqp/rabbit/connection/AbstractRoutingConnectionFactory.java#L126), [issue](https://github.com/spring-projects/spring-amqp/issues/1289)). The result...