link spring hornetq 集成通道
link spring integration channel to hornetq
这看起来很简单,但我做不出来。
我正在使用 spring-boot 1.2.2。我在 application.properties
:
中设置了大黄蜂队列
spring.hornetq.mode=embedded
spring.hornetq.embedded.enabled=true
spring.hornetq.embedded.queues=myQueue
我已经导入了 integration-context.xml
文件。
@ImportResource("integration-context.xml")
并定义了以下激活器:
<int:service-activator
input-channel="myQueue"
ref="myEndpointImpl"
method="send" >
</int:service-activator>
但是当我在 myQueue 上放置一条消息时,send
方法没有被触发。
我做错了什么?
这看起来很简单,但我做不出来。
我正在使用 spring-boot 1.2.2。我在 application.properties
:
spring.hornetq.mode=embedded
spring.hornetq.embedded.enabled=true
spring.hornetq.embedded.queues=myQueue
我已经导入了 integration-context.xml
文件。
@ImportResource("integration-context.xml")
并定义了以下激活器:
<int:service-activator
input-channel="myQueue"
ref="myEndpointImpl"
method="send" >
</int:service-activator>
但是当我在 myQueue 上放置一条消息时,send
方法没有被触发。
我做错了什么?