ActiveMQ是Apache出品,最流行的,能力強勁的開源消息總線。ActiveMQ 是一個徹底支持JMS1.1和J2EE 1.4規範的 JMS Provider實現,儘管JMS規範出臺已是好久的事情了,可是JMS在當今的J2EE應用中間仍然扮演着特殊的地位。java
主要特色:spring
1. 多種語言和協議編寫客戶端。語言: Java, C, C++, C#, Ruby, Perl, Python, PHP。應用協議: OpenWire,Stomp REST,WS Notification,XMPP,AMQP服務器
2. 徹底支持JMS1.1和J2EE 1.4規範 (持久化,XA消息,事務)session
3. 對Spring的支持,ActiveMQ能夠很容易內嵌到使用Spring的系統裏面去,並且也支持Spring2.0的特性tcp
4. 經過了常見J2EE服務器(如 Geronimo,JBoss 4, GlassFish,WebLogic)的測試,其中經過JCA 1.5 resource adaptors的配置,可讓ActiveMQ能夠自動的部署到任何兼容J2EE 1.4 商業服務器上ide
5. 支持多種傳送協議:in-VM,TCP,SSL,NIO,UDP,JGroups,JXTA性能
6. 支持經過JDBC和journal提供高速的消息持久化測試
7. 從設計上保證了高性能的集羣,客戶端-服務器,點對點spa
8. 支持Ajax設計
9. 支持與Axis的整合
10. 能夠很容易得調用內嵌JMS provider,進行測試
對於消息的傳遞有兩種類型:
一種是點對點的(Queue),即一個生產者和一個消費者一一對應;
另外一種是發佈/訂閱模式(Topic),即一個生產者產生消息並進行發送後,能夠由多個消費者進行接收。
JMS定義了五種不一樣的消息正文格式,以及調用的消息類型,容許你發送並接收以一些不一樣形式的數據,提供現有消息格式的一些級別的兼容性。
第一步: 把ActiveMQ 的壓縮包上傳到Linux系統。
第二步:解壓縮。
第三步:啓動。
使用bin目錄下的activemq命令啓動:
[root@localhost bin]# ./activemq start
關閉:
[root@localhost bin]# ./activemq stop
查看狀態:
[root@localhost bin]# ./activemq status
注意:若是ActiveMQ整合spring使用不要使用activemq-all-5.12.0.jar包。建議使用5.11.2
進入管理後臺:
http://192.168.25.168:8161/admin
用戶名:admin
密碼:admin
public class ActiveMqTest { /** * 點到點形式發送消息 */ @Test public void testQueueProducer() throws Exception { //一、建立一個鏈接工廠對象,須要指定服務的ip及端口。 ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://192.168.25.161:61616"); //二、使用工廠對象建立一個Connection對象。 Connection connection = connectionFactory.createConnection(); //三、開啓鏈接,調用Connection對象的start方法。 connection.start(); //四、建立一個Session對象。 //第一個參數:是否開啓事務。若是true開啓事務,第二個參數無心義。通常不開啓事務false。 //第二個參數:應答模式。自動應答或者手動應答。通常自動應答。 Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); //五、使用Session對象建立一個Destination對象。兩種形式queue、topic,如今應該使用queue Queue queue = session.createQueue("test-queue"); //六、使用Session對象建立一個Producer對象。 MessageProducer producer = session.createProducer(queue); //七、建立一個Message對象,能夠使用TextMessage。 /*TextMessage textMessage = new ActiveMQTextMessage(); textMessage.setText("hello Activemq");*/ TextMessage textMessage = session.createTextMessage("hello activemq"); //八、發送消息 producer.send(textMessage); //九、關閉資源 producer.close(); session.close(); connection.close(); } @Test public void testQueueConsumer() throws Exception { //建立一個ConnectionFactory對象鏈接MQ服務器 ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://192.168.25.161:61616"); //建立一個鏈接對象 Connection connection = connectionFactory.createConnection(); //開啓鏈接 connection.start(); //使用Connection對象建立一個Session對象 Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); //建立一個Destination對象。queue對象 Queue queue = session.createQueue("test-queue"); //使用Session對象建立一個消費者對象。 MessageConsumer consumer = session.createConsumer(queue); //接收消息 consumer.setMessageListener(new MessageListener() { @Override public void onMessage(Message message) { //打印結果 TextMessage textMessage = (TextMessage) message; String text; try { text = textMessage.getText(); System.out.println(text); } catch (JMSException e) { e.printStackTrace(); } } }); //等待接收消息 System.in.read(); //關閉資源 consumer.close(); session.close(); connection.close(); } }
public class ActiveMqTest { @Test public void testTopicProducer() throws Exception { //一、建立一個鏈接工廠對象,須要指定服務的ip及端口。 ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://192.168.25.161:61616"); //二、使用工廠對象建立一個Connection對象。 Connection connection = connectionFactory.createConnection(); //三、開啓鏈接,調用Connection對象的start方法。 connection.start(); //四、建立一個Session對象。 //第一個參數:是否開啓事務。若是true開啓事務,第二個參數無心義。通常不開啓事務false。 //第二個參數:應答模式。自動應答或者手動應答。通常自動應答。 Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); //五、使用Session對象建立一個Destination對象。兩種形式queue、topic,如今應該使用topic Topic topic = session.createTopic("test-topic"); //六、使用Session對象建立一個Producer對象。 MessageProducer producer = session.createProducer(topic); //七、建立一個Message對象,能夠使用TextMessage。 /*TextMessage textMessage = new ActiveMQTextMessage(); textMessage.setText("hello Activemq");*/ TextMessage textMessage = session.createTextMessage("topic message"); //八、發送消息 producer.send(textMessage); //九、關閉資源 producer.close(); session.close(); connection.close(); } @Test public void testTopicConsumer() throws Exception { //建立一個ConnectionFactory對象鏈接MQ服務器 ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://192.168.25.161:61616"); //建立一個鏈接對象 Connection connection = connectionFactory.createConnection(); //開啓鏈接 connection.start(); //使用Connection對象建立一個Session對象 Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE); //建立一個Destination對象。topic對象 Topic topic = session.createTopic("test-topic"); //使用Session對象建立一個消費者對象。 MessageConsumer consumer = session.createConsumer(topic); //接收消息 consumer.setMessageListener(new MessageListener() { @Override public void onMessage(Message message) { //打印結果 TextMessage textMessage = (TextMessage) message; String text; try { text = textMessage.getText(); System.out.println(text); } catch (JMSException e) { e.printStackTrace(); } } }); System.out.println("topic消費者3啓動。。。。"); //等待接收消息 System.in.read(); //關閉資源 consumer.close(); session.close(); connection.close(); } }