博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring2.5整合ActiveMQ 5.2
阅读量:6276 次
发布时间:2019-06-22

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

  hot3.png

项目环境:

JDK1.5

ActiveMQ5.2

所用的包都是ActiveMQ自带的。引用的包如下图:

27113551_E0eY.png

package stujms.p2ptxt; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.jms.core.JmsTemplate; import org.springframework.jms.core.MessageCreator; import javax.jms.Destination; import javax.jms.JMSException; import javax.jms.Message; import javax.jms.Session; /** * 消息发送者 * * @author leizhimin 2009-8-13 17:01:48 */ public class MySender {         public static void main(String[] args) {                 ApplicationContext ctx = new ClassPathXmlApplicationContext("/applicationContext.xml");                 JmsTemplate template = (JmsTemplate) ctx.getBean("jmsTemplate");                 Destination destination = (Destination) ctx.getBean("destination");                 template.send(destination, new MessageCreator() {                         public Message createMessage(Session session) throws JMSException {                                 return session.createTextMessage("发送消息:Hello ActiveMQ Text Message!");                         }                 });                 System.out.println("成功发送了一条JMS消息");         } }
package stujms.p2ptxt; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import org.springframework.jms.core.JmsTemplate; import javax.jms.Destination; import javax.jms.JMSException; import javax.jms.TextMessage; /** * 消息接收者 * * @author leizhimin 2009-8-13 17:02:04 */ public class MyReceiver {         public static void main(String[] args) throws JMSException {                 ApplicationContext ctx = new ClassPathXmlApplicationContext("/applicationContext.xml");                 JmsTemplate template = (JmsTemplate) ctx.getBean("jmsTemplate");                 Destination destination = (Destination) ctx.getBean("destination");                 while (true) {                         TextMessage txtmsg = (TextMessage) template.receive(destination);                         if (null != txtmsg)                                 System.out.println("收到消息内容为: " + txtmsg.getText());                         else                                 break;                 }         } }
 
         
         
                 
                  
         
                 
                  
         
                 
                 
          

运行发送端三次:

成功发送了一条JMS消息 Process finished with exit code 0

然后再运行接收端一次:

收到消息内容为: 发送消息:Hello ActiveMQ Text Message! 收到消息内容为: 发送消息:Hello ActiveMQ Text Message! 收到消息内容为: 发送消息:Hello ActiveMQ Text Message!

继续测试发现,接收端接收一条消息后不退出程序,而是继续等待,一旦有消息发送过来,就获取到,然后输出!

 

发一张图看看:

27113552_ZOdq.png

附件下载:

转载于:https://my.oschina.net/biezhi/blog/392616

你可能感兴趣的文章
普通表转换为分区表
查看>>
Java 容器 & 泛型:三、HashSet,TreeSet 和 LinkedHashSet比较
查看>>
性能优化总结(六):预加载、聚合SQL应用实例
查看>>
http缓存知识
查看>>
Go 时间交并集小工具
查看>>
iOS 多线程总结
查看>>
webpack是如何实现前端模块化的
查看>>
TCP的三次握手四次挥手
查看>>
关于redis的几件小事(六)redis的持久化
查看>>
package.json
查看>>
webpack4+babel7+eslint+editorconfig+react-hot-loader 搭建react开发环境
查看>>
Maven 插件
查看>>
初探Angular6.x---进入用户编辑模块
查看>>
计算机基础知识复习
查看>>
【前端词典】实现 Canvas 下雪背景引发的性能思考
查看>>
大佬是怎么思考设计MySQL优化方案的?
查看>>
<三体> 给岁月以文明, 给时光以生命
查看>>
Android开发 - 掌握ConstraintLayout(九)分组(Group)
查看>>
springboot+logback日志异步数据库
查看>>
Typescript教程之函数
查看>>