我没有看到从 Spring Boot 发送到 ActiveMQ Artemis 的消息 JMS 队列

发布于 2025-01-11 18:43:39 字数 2138 浏览 0 评论 0原文

我正在开发向 ActiveMQ Artemis 版本 2.16.0 发送消息。所以我做了一个概念测试。当消息从 Spring 发送时,一切正常,但是当我尝试在生产者部分的 ActiveMQ Artemis 中搜索消息时,我没有看到任何消息。

@RestController
public class RestApiController {
    
    @Autowired
    ArtemisProducer producer;
    
    @RequestMapping(value="/produce")
    public String produce(@RequestParam("msg")String msg){
        producer.send(msg);
        return "Done";
    }
    @RequestMapping(value="/produce",method = RequestMethod.POST)
    public String produce(@RequestBody  Person p){
        producer.send(p);
        return "Send Person Done" + p.toString();
    }
}
@Component
@EnableJms
public class ArtemisProducer {
    @Autowired
     JmsTemplate jmsTemplate;
    
    @Value("${jms.queue.destination}")
    String destinationQueue;
    
    public void send(String msg){
        jmsTemplate.convertAndSend(destinationQueue, msg);
    }
    public void send(Person p){
        jmsTemplate.convertAndSend(destinationQueue, p);
    }
}

application.properties

spring.artemis.mode=native
spring.artemis.host=localhost
spring.artemis.port=61616
spring.artemis.user=myuser
spring.artemis.password=otherpassword
jms.queue.destination=activemq.artemis-0526a0b16204:DLQ

我也尝试使用jms.queue.destination=DLQ,但行为是相同的。

输入图片此处描述输入图片此处描述

ActiveMQ Artemis Web 控制台结果: 输入图片此处描述

在此处输入图像描述

在此处输入图像描述

I am doing a development to send a message to ActiveMQ Artemis Version 2.16.0. So I did a concept test. When the message is sent from Spring all works well, but when I try search the message in ActiveMQ Artemis in the producer section I don't see neither message.

@RestController
public class RestApiController {
    
    @Autowired
    ArtemisProducer producer;
    
    @RequestMapping(value="/produce")
    public String produce(@RequestParam("msg")String msg){
        producer.send(msg);
        return "Done";
    }
    @RequestMapping(value="/produce",method = RequestMethod.POST)
    public String produce(@RequestBody  Person p){
        producer.send(p);
        return "Send Person Done" + p.toString();
    }
}
@Component
@EnableJms
public class ArtemisProducer {
    @Autowired
     JmsTemplate jmsTemplate;
    
    @Value("${jms.queue.destination}")
    String destinationQueue;
    
    public void send(String msg){
        jmsTemplate.convertAndSend(destinationQueue, msg);
    }
    public void send(Person p){
        jmsTemplate.convertAndSend(destinationQueue, p);
    }
}

application.properties:

spring.artemis.mode=native
spring.artemis.host=localhost
spring.artemis.port=61616
spring.artemis.user=myuser
spring.artemis.password=otherpassword
jms.queue.destination=activemq.artemis-0526a0b16204:DLQ

I also tried using jms.queue.destination=DLQ, but the behavior was the same.

enter image description here
enter image description here

Result in ActiveMQ Artemis web console:
enter image description here

enter image description here

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文