ActiveMQ使用教程

简介:

ActiveMQ 是Apache出品,最流行的,能力强劲的开源消息总线。ActiveMQ 是一个完全支持JMS1.1和J2EE 1.4规范的 JMS Provider实现,尽管JMS规范出台已经是很久的事情了,但是JMS在当今的J2EE应用中间仍然扮演着特殊的地位。 
ActiveMQ特性列表 
1. 多种语言和协议编写客户端。语言: Java, C, C++, C#, Ruby, Perl, Python, PHP。应用协议: OpenWire,Stomp REST,WS Notification,XMPP,AMQP 
2. 完全支持JMS1.1和J2EE 1.4规范 (持久化,XA消息,事务) 
3. 对Spring的支持,ActiveMQ可以很容易内嵌到使用Spring的系统里面去,而且也支持Spring2.0的特性 
4. 通过了常见J2EE服务器(如 Geronimo,JBoss 4, GlassFish,WebLogic)的测试,其中通过JCA 1.5 resource adaptors的配置,可以让ActiveMQ可以自动的部署到任何兼容J2EE 1.4 商业服务器上 
5. 支持多种传送协议:in-VM,TCP,SSL,NIO,UDP,JGroups,JXTA 
6. 支持通过JDBC和journal提供高速的消息持久化 
7. 从设计上保证了高性能的集群,客户端-服务器,点对点 
8. 支持Ajax 
9. 支持与Axis的整合 
10. 可以很容易得调用内嵌JMS provider,进行测试 

1:下载 ActiveMQ 5.6.0 Release 
http://activemq.apache.org/download.html 
放到d盘 
ActiveMQ使用教程

2:运行apache-activemq服务:双击 activemq.bat 
ActiveMQ使用教程 

3:效果 
ActiveMQ使用教程

4:所需jar包 
ActiveMQ使用教程

5:spring配置文件applicationContext.xml 


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<? xml  version = "1.0"  encoding = "UTF-8" ?>

<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" 

     "http://www.springframework.org/dtd/spring-beans.dtd">

< beans >
     < bean  id = "connectionFactory"  class = "org.apache.activemq.ActiveMQConnectionFactory" >
         < property  name = "brokerURL" >
             < value >tcp://localhost:61616?wireFormat.maxInactivityDuration=0</ value >
         </ property >
     </ bean >
     < bean  id = "jmsTemplate"  class = "org.springframework.jms.core.JmsTemplate" >
         < property  name = "connectionFactory" >
             < ref  bean = "connectionFactory" />
         </ property >
     </ bean >
     < bean  id = "destination"  class = "org.apache.activemq.command.ActiveMQQueue" >
         < constructor-arg  index = "0" >
             < value >MessageQueue</ value >
         </ constructor-arg >
     </ bean >
</ beans >



这时主要是配置activemq服务信息与实现springjms的对应接口 

6:消息产生者 

?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package  test;
import  javax.jms.JMSException;
import  javax.jms.Message;
import  javax.jms.Session;
 
import  org.springframework.jms.core.MessageCreator;
 
/**
  * 消息产生者
  * User: liuwentao
  * Time: 12-6-14 上午11:31
  */
public  class  MyMessageCreator  implements  MessageCreator {
     public  int  n =  0 ;
     private  static  String str1 =  "这个是第 " ;
     private  static  String str2 =  " 个测试消息!" ;
     private  String str =  "" ;
     @Override
     public  Message createMessage(Session paramSession)  throws  JMSException {
         System.out.println( "MyMessageCreator  n="  + n);
         if  (n ==  9 ) {
             //在这个例子中表示第9次调用时,发送结束消息
             return  paramSession.createTextMessage( "end" );
         }
         str = str1 + n + str2;
         return  paramSession.createTextMessage(str);
     }
}


7:发送消息方 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package  test;
import  javax.jms.Destination;
 
import  org.springframework.context.ApplicationContext;
import  org.springframework.context.support.ClassPathXmlApplicationContext;
import  org.springframework.jms.core.JmsTemplate;
/**
  * 发送消息方
  * User: liuwentao
  * Time: 12-6-14 上午11:29
  */
public  class  MessageSender  extends  Thread {
     public  static  void  main(String args[])  throws  Exception {
         String[] configLocations =  new  String[] { "test/applicationContext.xml" };
         ApplicationContext context =  new  ClassPathXmlApplicationContext(configLocations);
         JmsTemplate jmsTemplate = (JmsTemplate) context.getBean( "jmsTemplate" );
         Destination destination = (Destination) context.getBean( "destination" );
         for  ( int  i =  1 ; i <  100 ; i++) {
             System.out.println( "发送 i="  + i);
             //消息产生者
             MyMessageCreator myMessageCreator =  new  MyMessageCreator();
             myMessageCreator.n = i;
             jmsTemplate.send(destination, myMessageCreator);
             sleep( 10000 ); //10秒后发送下一条消息
         }
     }
}


8:消息接收方 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package  test;
import  javax.jms.Destination;
import  javax.jms.TextMessage;
 
import  org.springframework.context.ApplicationContext;
import  org.springframework.context.support.ClassPathXmlApplicationContext;
import  org.springframework.jms.core.JmsTemplate;
/**
  * 消息接收方
  * User: liuwentao
  * Time: 12-6-14 上午11:32
  */
public  class  MessageReciver{
     public  static  void  main(String args[])  throws  Exception {
         String[] configLocations =  new  String[] { "test/applicationContext.xml" };
         ApplicationContext context =  new  ClassPathXmlApplicationContext(configLocations);
 
         JmsTemplate jmsTemplate = (JmsTemplate) context.getBean( "jmsTemplate" );
         Destination destination = (Destination) context.getBean( "destination" );
 
         TextMessage msg =  null ;
         //是否继续接收消息
         boolean  isContinue =  true ;
         while  (isContinue) {
             msg = (TextMessage) jmsTemplate.receive(destination);
             System.out.println( "收到消息 :"  + msg.getText());
             if  (msg.getText().equals( "end" )) {
                 isContinue =  false ;
                 System.out.println( "收到退出消息,程序要退出!" );
             }
         }
         System.out.println( "程序退出了!" );
     }
}

9:测试 

运行 发送方和接收方 (顺序随便) main文件,效果如下: 

ActiveMQ使用教程 

ActiveMQ使用教程 
注:即使 接收方启动晚,或者 发送方关闭了, 接收方都会正常接收完所有数据 

特别说明:尊重作者的劳动成果,转载请注明出处哦~~~http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt247
相关文章
|
C语言
C语言初阶⑧(结构体)知识点和笔试题
C语言初阶⑧(结构体)知识点和笔试题
206 0
|
虚拟化 索引
看一下ARM的IP:SMMUU
看一下ARM的IP:SMMUU
650 1
|
JavaScript
使用nodejs连接ftp上传下载
使用nodejs连接ftp,进行ftp的操作,包括列表、上传、下载以及速率等。
使用nodejs连接ftp上传下载
|
关系型数据库 MySQL 数据库
MYSQL查看操作日志
MYSQL查看操作日志
737 0
|
测试技术
软件测试用例设计之微信群抢红包经典用例
作者在浏览招聘网站时遇到为微信群发和抢红包设计测试用例的问题,作为软件测试新手,作者通过实际体验并撰写测试案例来加深对业务的理解,并分享了测试案例表格。需要注意的是,该用例未考虑添加银行卡支付、红包类型选择及红包描述。
328 5
软件测试用例设计之微信群抢红包经典用例
|
11月前
|
传感器 机器学习/深度学习 数据采集
AI在环保中的角色:污染监测与防治
【10月更文挑战第6天】AI在环保领域的应用,不仅提升了污染监测的精准度和防治效率,还推动了环保技术的创新和升级。作为未来环保事业的重要力量,AI正以其独特的优势,为构建更加绿色、可持续的生态环境贡献着智慧与力量。我们有理由相信,在AI的助力下,我们的地球将变得更加美好。
|
11月前
|
Kubernetes Cloud Native Serverless
批处理系统:Batch批量计算与云原生Serverless Argo Workflows
本文对比了Batch批量计算与Serverless Argo Workflows在容器化批处理任务中的应用,分析了两者在任务定义、依赖关系、规模并发、高级编排、可移植性等方面的异同,帮助技术决策者根据自身需求选择合适的平台。
|
数据采集 存储 数据库
从零到一建设数据中台(番外篇)- 数据中台UI欣赏
从零到一建设数据中台(番外篇)- 数据中台UI欣赏
196 0
从零到一建设数据中台(番外篇)- 数据中台UI欣赏
|
存储 大数据 Python
NumPy 内存管理和性能调优
【8月更文第30天】NumPy 是 Python 中用于科学计算的核心库之一,它提供了高效的数组操作功能。然而,随着数据集的增大,如何有效地管理和优化 NumPy 数组的内存使用成为了一个重要的问题。本文将介绍一些技巧,帮助你更好地管理和优化 NumPy 数组的内存使用。
553 0
|
Java
一行注解,省却百行代码:深度解析@RequiredArgsConstructor的妙用
一行注解,省却百行代码:深度解析@RequiredArgsConstructor的妙用
772 0