feat(UP-4637): migrate from spring-multirabbit to standard spring-boot-starter-amqp and removes spring-cloud-starter-bus-amqp - #204
Merged
Conversation
…t-starter-amqp and removes spring-cloud-starter-bus-amqp
Migrated RabbitMQ configuration and message handling from custom spring-multirabbit to the standard Spring Boot AMQP starter. This simplifies the queue infrastructure to target a single RabbitMQ connection and eliminates unnecessary overhead.
Changes:
- pom.xml: Added standard 'spring-boot-starter-amqp' and 'spring-boot-starter-validation' dependencies to replace 'spring-multirabbit' and 'spring-cloud-starter-bus-amqp'.
- RabbitmqConfig.java: Removed 'Qualifier'-based bean customizations and multirabbit references. Reconfigured 'rabbitListenerContainerFactory' and 'rabbitTemplate' using standard ConnectionFactory and message converters.
- RabbitmqRequestHandler.java: Switched 'ASYNC_CONTAINER_FACTORY' destination from the custom 'eventBus' to the standard 'rabbitListenerContainerFactory' to match the new AMQP configuration.
ocristian
requested review from
a team,
felixoldenburg,
mohammedalics and
omidtavakoli
and removed request for
felixoldenburg,
mohammedalics and
omidtavakoli
August 20, 2026 18:48
omidtavakoli
approved these changes
Aug 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrated RabbitMQ configuration and message handling from custom
spring-multirabbitto the standard Spring Boot AMQP starter. This simplifies the queue infrastructure to target a single RabbitMQ connection and eliminates unnecessary overhead.Changes:
- pom.xml: Added standard
spring-boot-starter-amqpandspring-boot-starter-validationdependencies to replacespring-multirabbitandspring-cloud-starter-bus-amqp.- RabbitmqConfig.java: Removed
Qualifierbased bean customizations andmultirabbitreferences. ReconfiguredrabbitListenerContainerFactoryandrabbitTemplateusing standard ConnectionFactory and message converters.- RabbitmqRequestHandler.java: Switched
ASYNC_CONTAINER_FACTORYdestination from the customeventBusto the standardrabbitListenerContainerFactoryto match the new AMQP configuration.