mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-25 02:49:03 +00:00
This commit updates the auto-configuration to use the native connection factory for configuring message listener containers. Previously, the connection factory that could have been wrapped in a caching connection factory was used. While using a caching connection factory is suitable for sending messages (i.e. JmsTemplate usage), it isn't for message listeners as they need to own the connection for local recovery purposes. Closes gh-39816