在发送消息之后立即检索JMS标题而不消耗消息

时间:2017-12-28 02:50:42

标签: spring activemq spring-jms jmstemplate

如何在发送消息后检索JMS消息头但不消费消息?

这是我的邮件发送代码

jmsTemplate.convertAndSend(que, text, message -> {

       LOGGER.info("setting JMS Message header values");    
       message.setStringProperty(RequestContext.HEADER_ID, id);
     //  LOGGER.info(message.getJMSMessageId()); -- this gives a null value here
       return message;
 });

只有在将消息发布到队列之后才生成消息头,所以在使用MessagePostProcessor时,有一种简单的方法来检索JMS消息头吗?

我已经引用了这些链接 - herehere,但没有多少帮助:(

1 个答案:

答案 0 :(得分:1)

在实际发送邮件之前,您无法获取JmsMessageID标头;后处理器只允许您在发送之前修改转换后的消息。

但是,您的第二个链接应该可以正常工作,因为它会保存对您稍后可以访问的邮件的引用。

修改

证实:

@SpringBootApplication
public class So48001045Application {

    public static void main(String[] args) {
        SpringApplication.run(So48001045Application.class, args).close();
    }

    @Bean
    public ApplicationRunner runner(JmsTemplate template) {
        return args -> {
            final AtomicReference<Message> msg = new AtomicReference<>();
            template.convertAndSend("foo", "bar", m -> {
                msg.set(m);
                return m;
            });
            System.out.println(msg.get().getJMSMessageID());
        };
    }

}

ID:host.local-61612-1514496441253-4:1:1:1:1