博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ActiveMQ使用教程
阅读量:4602 次
发布时间:2019-06-09

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

详见:

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 
放到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使用教程 
注:即使 接收方启动晚,或者 发送方关闭了, 接收方都会正常接收完所有数据 

转载于:https://www.cnblogs.com/grefr/p/6089192.html

你可能感兴趣的文章
利用CGLib实现动态代理实现Spring的AOP
查看>>
面试之SQL(1)--选出选课数量>=2的学号
查看>>
IIS处理并发请求时出现的问题
查看>>
数学作业
查看>>
使用pycharm开发web——django2.1.5(二)创建一个app并做一些配置
查看>>
[ZPG TEST 105] 扑克游戏【Huffman】
查看>>
_bzoj2005 [Noi2010]能量采集
查看>>
pat 团体天梯赛 L3-010. 是否完全二叉搜索树
查看>>
烟草MES系统介绍-序
查看>>
优先队列小结
查看>>
线程安全与可重入函数之间的区别与联系
查看>>
bat批处理中如何获取前一天日期
查看>>
{Nodejs} request URL 中文乱码
查看>>
异常及日志使用与项目打包
查看>>
努力,时间,坚持,自律
查看>>
真三 bug PT的凤凰
查看>>
???动态SQL
查看>>
js错误处理与调试理论和办法
查看>>
Binding.StringFormat不起作用的原理和解决
查看>>
css hack兼容写法
查看>>