这似乎很简单,但我无法解决。
我使用的是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
方法没有被触发。
我做错了什么?
答案 0 :(得分:0)