两种JMS的实现方法小例子

Topic==>消息主题 是发布/订阅 一个消息同时发送给多个接收者  (代码 topic 包)
Queue==>消息队列 是点到点   一个消息只发送给一个接受者  point-to-point (代码 queue 包)



1.下载 apache-activemq-5.3.0-bin.zip

2.下载例子 testActivemq.rar

3.用eclipse 打开  testActivemq 工程,并把 D:\apache-activemq-5.3.0\lib中的jar导入

4.启动 D:\apache-activemq-5.3.0\bin\activemq.bat

5.开始测试吧

你可能感兴趣的:(apache,eclipse,activemq,jms)