溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

spring boot整合JMS的示例分析

發(fā)布時間:2021-07-08 13:49:20 來源:億速云 閱讀:270 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)spring boot整合JMS的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

一、安裝ActiveMQ

具體的安裝步驟,請參考我的另一篇文章:https://www.jb51.net/article/127117.htm

二、新建spring boot工程,并加入JMS(ActiveMQ)依賴

spring boot整合JMS的示例分析

三、工程結(jié)構(gòu)

spring boot整合JMS的示例分析

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 //如果此處設(shè)置為true,需要加如下的依賴包,否則會自動配置失敗,報JmsMessagingTemplate注入失敗
<dependency> 
      <groupId>org.apache.activemq</groupId> 
      <artifactId>activemq-pool</artifactId> 
      <!-- <version>5.7.0</version> --> 
    </dependency>

五、消息生產(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對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收到的報文為:"+text); 
  } 
}

消費(fèi)者2的代碼同上,注意,消息消費(fèi)者的類上必須加上@Component,或者是@Service,這樣的話,消息消費(fèi)者類就會被委派給Listener類,原理類似于使用SessionAwareMessageListener以及MessageListenerAdapter來實(shí)現(xiàn)消息驅(qū)動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!!!"); 
    } 
  } 
 
}

測試結(jié)果如下:

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!!!

經(jīng)過上面的幾個步驟,spring boot和Jms就基本上整合完成了,是不是使用起來很方便了!

八、實(shí)現(xiàn)雙向隊(duì)列

1、下面首先來對Consumer2這個消費(fè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收到的報文為:"+text); 
    return "return message"+text; 
  } 
}

從上面的代碼可以看出,我們在receiveQueue方法上面多加了一個注解@SendTo("out.queue"),該注解的意思是將return回的值,再發(fā)送的"out.queue"隊(duì)列中,下面我們再來跑一下前面的測試,在監(jiān)控頁面中,我們發(fā)現(xiàn),"out.queue"隊(duì)列中已經(jīng)有內(nèi)容了,如下:

spring boot整合JMS的示例分析

進(jìn)入Browse界面觀看:

spring boot整合JMS的示例分析

最后看下收到的具體信息:

spring boot整合JMS的示例分析

我們發(fā)現(xiàn),該隊(duì)列中的消息,就是我們返回的值!

九、對Producer進(jìn)行改造

通過上面的示例,我們現(xiàn)在對Producer進(jìn)行改造,使其既能生產(chǎn)報文,又能消費(fèi)隊(duì)列中的報文,代碼如下:

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ù)報文為:"+text); 
  } 
}

測試結(jié)果如下:

從out.queue隊(duì)列收到的回復(fù)報文為:return messagemyname is chhliu!!! 
Consumer收到的報文為:myname is chhliu!!! 
Consumer2收到的報文為:myname is chhliu!!! 
從out.queue隊(duì)列收到的回復(fù)報文為:return messagemyname is chhliu!!! 
Consumer收到的報文為:myname is chhliu!!! 
Consumer2收到的報文為:myname is chhliu!!! 
從out.queue隊(duì)列收到的回復(fù)報文為:return messagemyname is chhliu!!! 
Consumer收到的報文為:myname is chhliu!!! 
Consumer2收到的報文為:myname is chhliu!!! 
從out.queue隊(duì)列收到的回復(fù)報文為:return messagemyname is chhliu!!!

關(guān)于“spring boot整合JMS的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI