Весной 5 JMS документирование DefaultMessageListenerContainer требуется уточнение назначения - PullRequest
0 голосов
/ 06 февраля 2019
<!-- this is the Message Driven POJO (MDP) -->
<bean id="messageListener" class="jmsexample.ExampleListener"/>

<!-- and this is the message listener container -->
<bean id="jmsContainer"    
class="org.springframework.jms.listener.DefaultMessageListenerContainer">
<property name="connectionFactory" ref="connectionFactory"/>
<property name="destination" ref="destination"/>
<property name="messageListener" ref="messageListener"/>
</bean>

https://docs.spring.io/spring/docs/current/spring-framework-reference/integration.html#jms

Как определить bean ref'destination 'в свойстве name = "destination" ref = "destination"

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...