我们使用 Camel 通过 ActiveMQ 发送消息。在我们的代码中,我们有以下配置,它可以工作:
@Produce(uri = IEventService.QUEUE_NAME)
private IProducer sender;
@Override
public void emit(final Event e) {
sender.emit(e);
}
现在,我们要使用 ActiveMQ 消息组: http ://activemq.apache.org/message-groups.html
根据文档,我需要在消息头中设置 JMSXGroupID。如何获取消息头以便我可以在我的 emit() api 中设置此属性?
谢谢。-AP_