您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關spring boot整合JMS的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
一、安裝ActiveMQ
具體的安裝步驟,請參考我的另一篇文章:https://www.jb51.net/article/127117.htm
二、新建spring boot工程,并加入JMS(ActiveMQ)依賴
三、工程結構
pom依賴如下:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.chhliu.springboot.jms</groupId> <artifactId>springboot-jms</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <name>springboot-jms</name> <description>Demo project for Spring Boot Jms</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.4.3.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.7</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
四、修改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 //如果此處設置為true,需要加如下的依賴包,否則會自動配置失敗,報JmsMessagingTemplate注入失敗
<dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-pool</artifactId> <!-- <version>5.7.0</version> --> </dependency>
五、消息生產者
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對JmsTemplate進行了封裝 private JmsMessagingTemplate jmsTemplate; // 發送消息,destination是發送到的隊列,message是待發送的消息 public void sendMessage(Destination destination, final String message){ jmsTemplate.convertAndSend(destination, message); } }
六、消息消費者
package com.chhliu.springboot.jms; import org.springframework.jms.annotation.JmsListener; import org.springframework.stereotype.Component; @Component public class Consumer { // 使用JmsListener配置消費者監聽的隊列,其中text是接收到的消息 @JmsListener(destination = "mytest.queue") public void receiveQueue(String text) { System.out.println("Consumer收到的報文為:"+text); } }
消費者2的代碼同上,注意,消息消費者的類上必須加上@Component,或者是@Service,這樣的話,消息消費者類就會被委派給Listener類,原理類似于使用SessionAwareMessageListener以及MessageListenerAdapter來實現消息驅動POJO
七、測試
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!!!"); } } }
測試結果如下:
Consumer2收到的報文為:myname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!!
經過上面的幾個步驟,spring boot和Jms就基本上整合完成了,是不是使用起來很方便了!
八、實現雙向隊列
1、下面首先來對Consumer2這個消費者來進行下改造,代碼如下:
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收到的報文為:"+text); return "return message"+text; } }
從上面的代碼可以看出,我們在receiveQueue方法上面多加了一個注解@SendTo("out.queue"),該注解的意思是將return回的值,再發送的"out.queue"隊列中,下面我們再來跑一下前面的測試,在監控頁面中,我們發現,"out.queue"隊列中已經有內容了,如下:
進入Browse界面觀看:
最后看下收到的具體信息:
我們發現,該隊列中的消息,就是我們返回的值!
九、對Producer進行改造
通過上面的示例,我們現在對Producer進行改造,使其既能生產報文,又能消費隊列中的報文,代碼如下:
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隊列收到的回復報文為:"+text); } }
測試結果如下:
從out.queue隊列收到的回復報文為:return messagemyname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!! 從out.queue隊列收到的回復報文為:return messagemyname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!! 從out.queue隊列收到的回復報文為:return messagemyname is chhliu!!! Consumer收到的報文為:myname is chhliu!!! Consumer2收到的報文為:myname is chhliu!!! 從out.queue隊列收到的回復報文為:return messagemyname is chhliu!!!
關于“spring boot整合JMS的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。