這篇文章將為大家詳細(xì)講解有關(guān)spring boot整合JMS的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)專注于英山網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供英山營(yíng)銷型網(wǎng)站建設(shè),英山網(wǎng)站制作、英山網(wǎng)頁(yè)設(shè)計(jì)、英山網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)公司服務(wù),打造英山網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供英山網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
一、安裝ActiveMQ
具體的安裝步驟,請(qǐng)參考我的另一篇文章:https://www.jb51.net/article/127117.htm
二、新建spring boot工程,并加入JMS(ActiveMQ)依賴
三、工程結(jié)構(gòu)
pom依賴如下:
4.0.0 com.chhliu.springboot.jms springboot-jms 0.0.1-SNAPSHOT jar springboot-jms Demo project for Spring Boot Jms org.springframework.boot spring-boot-starter-parent 1.4.3.RELEASE UTF-8 UTF-8 1.7 org.springframework.boot spring-boot-starter-activemq org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-maven-plugin
四、修改application.properties配置文件
## URL of the ActiveMQ broker. Auto-generated by default. For instance `tcp://localhost:61616` # failover:(tcp://localhost:61616,tcp://localhost:61617) # tcp://localhost:61616 spring.activemq.broker-url=tcp://localhost:61616 spring.activemq.in-memory=true spring.activemq.pool.enabled=false //如果此處設(shè)置為true,需要加如下的依賴包,否則會(huì)自動(dòng)配置失敗,報(bào)JmsMessagingTemplate注入失敗
org.apache.activemq activemq-pool
五、消息生產(chǎn)者
package com.chhliu.springboot.jms; import javax.jms.Destination; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jms.core.JmsMessagingTemplate; import org.springframework.stereotype.Service; @Service("producer") public class Producer { @Autowired // 也可以注入JmsTemplate,JmsMessagingTemplate對(duì)JmsTemplate進(jìn)行了封裝 private JmsMessagingTemplate jmsTemplate; // 發(fā)送消息,destination是發(fā)送到的隊(duì)列,message是待發(fā)送的消息 public void sendMessage(Destination destination, final String message){ jmsTemplate.convertAndSend(destination, message); } }
六、消息消費(fèi)者
package com.chhliu.springboot.jms; import org.springframework.jms.annotation.JmsListener; import org.springframework.stereotype.Component; @Component public class Consumer { // 使用JmsListener配置消費(fèi)者監(jiān)聽的隊(duì)列,其中text是接收到的消息 @JmsListener(destination = "mytest.queue") public void receiveQueue(String text) { System.out.println("Consumer收到的報(bào)文為:"+text); } }
消費(fèi)者2的代碼同上,注意,消息消費(fèi)者的類上必須加上@Component,或者是@Service,這樣的話,消息消費(fèi)者類就會(huì)被委派給Listener類,原理類似于使用SessionAwareMessageListener以及MessageListenerAdapter來(lái)實(shí)現(xiàn)消息驅(qū)動(dòng)POJO
七、測(cè)試
package com.chhliu.springboot.jms; import javax.jms.Destination; import org.apache.activemq.command.ActiveMQQueue; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class SpringbootJmsApplicationTests { @Autowired private Producer producer; @Test public void contextLoads() throws InterruptedException { Destination destination = new ActiveMQQueue("mytest.queue"); for(int i=0; i<100; i++){ producer.sendMessage(destination, "myname is chhliu!!!"); } } }
測(cè)試結(jié)果如下:
Consumer2收到的報(bào)文為:myname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!!
經(jīng)過(guò)上面的幾個(gè)步驟,spring boot和Jms就基本上整合完成了,是不是使用起來(lái)很方便了!
八、實(shí)現(xiàn)雙向隊(duì)列
1、下面首先來(lái)對(duì)Consumer2這個(gè)消費(fèi)者來(lái)進(jìn)行下改造,代碼如下:
package com.chhliu.springboot.jms; import org.springframework.jms.annotation.JmsListener; import org.springframework.messaging.handler.annotation.SendTo; import org.springframework.stereotype.Component; @Component public class Consumer2 { @JmsListener(destination = "mytest.queue") @SendTo("out.queue") public String receiveQueue(String text) { System.out.println("Consumer2收到的報(bào)文為:"+text); return "return message"+text; } }
從上面的代碼可以看出,我們?cè)趓eceiveQueue方法上面多加了一個(gè)注解@SendTo("out.queue"),該注解的意思是將return回的值,再發(fā)送的"out.queue"隊(duì)列中,下面我們?cè)賮?lái)跑一下前面的測(cè)試,在監(jiān)控頁(yè)面中,我們發(fā)現(xiàn),"out.queue"隊(duì)列中已經(jīng)有內(nèi)容了,如下:
進(jìn)入Browse界面觀看:
最后看下收到的具體信息:
我們發(fā)現(xiàn),該隊(duì)列中的消息,就是我們返回的值!
九、對(duì)Producer進(jìn)行改造
通過(guò)上面的示例,我們現(xiàn)在對(duì)Producer進(jìn)行改造,使其既能生產(chǎn)報(bào)文,又能消費(fèi)隊(duì)列中的報(bào)文,代碼如下:
package com.chhliu.springboot.jms; import javax.jms.Destination; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jms.annotation.JmsListener; import org.springframework.jms.core.JmsMessagingTemplate; import org.springframework.stereotype.Service; @Service("producer") public class Producer { @Autowired private JmsMessagingTemplate jmsTemplate; public void sendMessage(Destination destination, final String message){ jmsTemplate.convertAndSend(destination, message); } @JmsListener(destination="out.queue") public void consumerMessage(String text){ System.out.println("從out.queue隊(duì)列收到的回復(fù)報(bào)文為:"+text); } }
測(cè)試結(jié)果如下:
從out.queue隊(duì)列收到的回復(fù)報(bào)文為:return messagemyname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!! 從out.queue隊(duì)列收到的回復(fù)報(bào)文為:return messagemyname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!! 從out.queue隊(duì)列收到的回復(fù)報(bào)文為:return messagemyname is chhliu!!! Consumer收到的報(bào)文為:myname is chhliu!!! Consumer2收到的報(bào)文為:myname is chhliu!!! 從out.queue隊(duì)列收到的回復(fù)報(bào)文為:return messagemyname is chhliu!!!
關(guān)于“spring boot整合JMS的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。