博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring 与 ActiveMQ 整合代码
阅读量:6800 次
发布时间:2019-06-26

本文共 1323 字,大约阅读时间需要 4 分钟。

hot3.png

Spring 与 ActiveMQ 整合代码
tcp://localhost:61616
短信消息处理
public class SmsQueueConsumer implements MessageListener {    @Override    public void onMessage(Message message) {        String topicName = null;        try {            Queue jmsReplyTo = (Queue) message.getJMSDestination();            ;            topicName = jmsReplyTo.getQueueName();        } catch (JMSException e) {            e.printStackTrace();        }        if (message instanceof TextMessage) {            try {                System.out.println(Thread.currentThread().getName() + ",收到队列(" + topicName + ")的消息:" + ((TextMessage) message).getText());            } catch (JMSException ex) {                throw new RuntimeException(ex);            }        } else {            throw new IllegalArgumentException("Message must be of type TextMessage");        }    }}

tips:

本文由导入,原文链接:

转载于:https://my.oschina.net/yangyan/blog/859521

你可能感兴趣的文章
Apache Spark源码走读(九)如何进行代码跟读&使用Intellij idea调试Spark源码
查看>>
【好书试读】数据有度:场景时代的内容玩法
查看>>
mysql 主从设计
查看>>
mybatis使用数组批量删除
查看>>
npm scripts 使用指南
查看>>
架构师速成8.1-谈做技术人员的态度
查看>>
千金药方——MongoDB疑难杂症的分析和优化
查看>>
【Hadoop Summit Tokyo 2016】为什么我的Hadoop集群运行这么慢?
查看>>
Android应用安全开发之浅谈网页打开APP
查看>>
阿里云MongoDB Sharding备份和恢复服务深度解密
查看>>
tr命令学习(shell)
查看>>
在SQL 2005中用T-SQL插入中文数据时出现的问号或乱码的解决方案[转]
查看>>
验证码对抗之路及现有验证机制介绍
查看>>
数据库记录安全解决方案
查看>>
[LeetCode] Repeated DNA Sequences
查看>>
Angularjs 源码分析3
查看>>
撕下 Coding iPad 悬赏单的小小感触
查看>>
从文件路径中获取文件名的方法
查看>>
关于Recycle Bin是什么以及实验
查看>>
linux php redis 环境配置
查看>>