成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

怎么在ActiveMQ中利用Spring收發(fā)消息-創(chuàng)新互聯(lián)

怎么在ActiveMQ中利用Spring收發(fā)消息?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

目前成都創(chuàng)新互聯(lián)公司已為上千的企業(yè)提供了網(wǎng)站建設(shè)、域名、雅安服務(wù)器托管綿陽(yáng)服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、桑植網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。

Maven 依賴

結(jié)合Spring使用ActiveMQ的依賴如下:

<!-- Spring JMS -->
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-jms</artifactId>
  <version>${spring.version}</version>
</dependency>
<!-- xbean 如<amq:connectionFactory /> -->
<dependency>
  <groupId>org.apache.xbean</groupId>
  <artifactId>xbean-spring</artifactId>
  <version>3.16</version>
</dependency>
<!-- ActiiveMQ -->
<dependency>
  <groupId>org.apache.activemq</groupId>
  <artifactId>activemq-core</artifactId>
  <version>5.7.0</version>
</dependency>
<dependency>
  <groupId>org.apache.activemq</groupId>
  <artifactId>activemq-pool</artifactId>
  <version>5.7.0</version>
</dependency>

ActiveMQ.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:amq="http://activemq.apache.org/schema/core"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
 
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
 
 
http://activemq.apache.org/schema/core
 
 
http://activemq.apache.org/schema/core/activemq-core-5.12.1.xsd">
 
  <!-- ActiveMQ 連接工廠 -->
  <amq:connectionFactory id="amqConnectionFactory"
              brokerURL="tcp://localhost:61616"
              userName="admin"
              password="admin" />
  <!-- 提高效率,配置JMS連接工廠 -->
  <bean id="connectionFactory" class="org.springframework.jms.connection.CachingConnectionFactory">
    <constructor-arg ref="amqConnectionFactory" />
    <property name="sessionCacheSize" value="100" />
  </bean>
  <!-- 定義消息隊(duì)列(Queue)-->
  <!-- <bean id="QueueDestination" class="org.apache.activemq.command.ActiveMQQueue">
    &lt;!– 設(shè)置消息隊(duì)列的名字 –&gt;
    <constructor-arg value="Queue-zy"/>
  </bean>-->
  <!--定義主題(Topic)-->
  <bean id="topicDestination" class="org.apache.activemq.command.ActiveMQTopic">
    <constructor-arg value="Topic-zy"/>
  </bean>
  <!-- 配置JMS模板(Queue),Spring提供的JMS工具類,利用它發(fā)送、接收消息。 -->
  <bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
    <property name="connectionFactory" ref="connectionFactory" />
    <property name="defaultDestination" ref="topicDestination" />
    <property name="receiveTimeout" value="10000" />
    <!-- true是topic,false是queue,默認(rèn)是false -->
    <property name="pubSubDomain" value="true" />
  </bean>
  <!-- 配置消息隊(duì)列監(jiān)聽(tīng)者(Queue or Topic) -->
  <bean id="messageListener" class="com.service.TopicMessageListener" />
  <!-- 顯示注入消息監(jiān)聽(tīng)容器,配置連接工廠,監(jiān)聽(tīng)的目標(biāo)是QueueDestination,監(jiān)聽(tīng)器是上面定義的監(jiān)聽(tīng)器 -->
  <bean id="ListenerContainer"
     class="org.springframework.jms.listener.DefaultMessageListenerContainer">
    <property name="connectionFactory" ref="connectionFactory" />
    <property name="destination" ref="topicDestination" />
    <property name="messageListener" ref="messageListener" />
  </bean>
</beans>

配置 connectionFactory

connectionFactory 是 Spring 用于創(chuàng)建到 JMS 服務(wù)器鏈接的,Spring 提供了多種 connectionFactory。

<!-- ActiveMQ 連接工廠 -->
<amq:connectionFactory id="amqConnectionFactory"
            brokerURL="tcp://localhost:61616"
            userName="admin"
            password="admin" />
<!-- 提高效率,配置JMS連接工廠 -->
<bean id="connectionFactory" class="org.springframework.jms.connection.CachingConnectionFactory">
  <constructor-arg ref="amqConnectionFactory" />
  <property name="sessionCacheSize" value="100" />
</bean>

配置Queue

<bean id="QueueDestination" class="org.apache.activemq.command.ActiveMQQueue">
    <!-- 設(shè)置消息隊(duì)列的名字 -->
    <constructor-arg value="Queue-zy"/>
</bean>

配置Topic

<bean id="topicDestination" class="org.apache.activemq.command.ActiveMQTopic">
    <constructor-arg value="Topic-zy"/>
</bean>

配置JMS消息模板——jmsTemplate

<!-- 配置JMS模板,Spring提供的JMS工具類,利用它發(fā)送、接收消息-->
<bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
  <property name="connectionFactory" ref="connectionFactory" />
  <property name="defaultDestination" ref="QueueDestination" />
  <!--<property name="defaultDestination" ref="topicDestination" />-->
  <property name="receiveTimeout" value="10000" />
  <property name="pubSubDomain" value="false" /><!-- true是topic,false是queue,默認(rèn)是false -->
</bean>

最后,在 applicationContext.xml 中引入配置好的 ActiveMQ.xml

<import resource="ActiveMQ.xml" />

以上就是配置文件相關(guān)的,下面是具體的業(yè)務(wù)代碼。

消息生產(chǎn)者服務(wù)

@Service
public class ProducerService {
  @Autowired
  private JmsTemplate jmsTemplate;
  //使用默認(rèn)目的地
  public void sendMessageDefault(final String msg){
    Destination destination = jmsTemplate.getDefaultDestination();
    System.out.println("向隊(duì)列: " + destination + " 成功發(fā)送一條消息");
    jmsTemplate.send(new MessageCreator() {
      public Message createMessage(Session session) throws JMSException {
        return session.createTextMessage(msg);
      }
    });
  }
  //可指定目的地
  public void sendMessage(Destination destination,final String msg){
    jmsTemplate.send(destination, new MessageCreator() {
      public Message createMessage(Session session) throws JMSException {
        return session.createTextMessage(msg);
      }
    });
  }
}

消息消費(fèi)者服務(wù)

@Service
public class ConsumerService {
  @Autowired
  private JmsTemplate jmsTemplate;
  //從指定的Destination接收消息
  public TextMessage recive(Destination destination){
    TextMessage message = (TextMessage) jmsTemplate.receive(destination);
    try {
      System.out.println("從隊(duì)列" + destination.toString() + "收到了消息" + message.getText());
    } catch (JMSException e) {
      e.printStackTrace();
    }
    return message;
  }
  //從默認(rèn)的Destination接收消息
  public void reciveDefault(){
 
    Destination destination = jmsTemplate.getDefaultDestination();
    jmsTemplate.setReceiveTimeout(5000);
    while(true){
      TextMessage message = (TextMessage) jmsTemplate.receive(destination);
      try {
        //這里還是同一個(gè)消費(fèi)者
        System.out.println("消費(fèi)者 從目的地 " + destination.toString() + " 收到了消息" + message.getText());
      } catch (JMSException e) {
        e.printStackTrace();
      }
    }
  }
}

生產(chǎn)者

直接在 main 方法中獲取 ApplicationContext 運(yùn)行,便于測(cè)試。

@Component
public class MsgProducer {
  @Autowired
  private ProducerService producerService;
  public void send(){
    System.out.println("生產(chǎn)者開(kāi)始發(fā)送消息:");
    for(int i = 1; i < 11; i++){
      String msg = "生產(chǎn)者發(fā)出的消息";
      producerService.sendMessageDefault(msg + "-----" + i);
    }
  }
  public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("classpath:/applicationContext.xml");
    MsgProducer msgProducer = context.getBean(MsgProducer.class);
    msgProducer.send();
  }
}

消費(fèi)者

@Component
public class MsgConsumer {
  @Autowired
  private ConsumerService consumerService;
  public void recive(){
    System.out.println("消費(fèi)者 1 開(kāi)始接收消息:");
    consumerService.reciveDefault();
  }
  public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext("classpath:/applicationContext.xml");
    MsgConsumer msgConsumer = context.getBean(MsgConsumer.class);
    msgConsumer.recive();
  }
}

接下來(lái)就可以啟動(dòng)項(xiàng)目。同樣是使用兩種方式測(cè)試。

第一種方式————點(diǎn)對(duì)點(diǎn)(Queue)

同步的方式

先啟動(dòng)生產(chǎn)者發(fā)送10條消息, 再啟動(dòng)消費(fèi)者,可以看到控制臺(tái)顯示成功收到10條消息。

怎么在ActiveMQ中利用Spring收發(fā)消息

怎么在ActiveMQ中利用Spring收發(fā)消息

異步監(jiān)聽(tīng)的方式

通過(guò)監(jiān)聽(tīng)器即可實(shí)現(xiàn)異步接收消息的效果,而不是像上面使用 while() 輪詢同步的方式。

項(xiàng)目中一般都是使用異步監(jiān)聽(tīng)的方式,在 A 服務(wù)中發(fā)送了一條消息,B 服務(wù)可以利用消息監(jiān)聽(tīng)器監(jiān)聽(tīng),當(dāng)收到消息后,進(jìn)行相應(yīng)的操作。

消息監(jiān)聽(tīng)器(3種)

通過(guò)繼承 JMS 中的 MessageListener 接口,實(shí)現(xiàn) onMessage() 方法,就可以自定義監(jiān)聽(tīng)器。這是最基本的監(jiān)聽(tīng)器。(可根據(jù)業(yè)務(wù)實(shí)現(xiàn)自定義的功能)

另外spring也給我們提供了其他類型的消息監(jiān)聽(tīng)器,比如 SessionAwareMessageListener,它的作用不僅可以接收消息,還可以發(fā)送一條消息通知對(duì)方表示自己收到了消息。(還有一種是 MessageListenerAdapter)

一個(gè)簡(jiǎn)單的自定義監(jiān)聽(tīng)器如下:收到消息后打印消息

public class QueueMessageListener implements MessageListener {
  public void onMessage(Message message) {
    //如果有消息
    TextMessage tmessage = (TextMessage) message;
    try {
      if(tmessage != null){
        System.out.println("監(jiān)聽(tīng)器監(jiān)聽(tīng)消息:"+tmessage.getText());
      }
    } catch (JMSException e) {
      e.printStackTrace();
    }
  }
}

在 ActiveMQ.xml 中引入消息監(jiān)聽(tīng)器:

<!-- 配置消息隊(duì)列監(jiān)聽(tīng)者(Queue) -->
  <bean id="queueMessageListener" class="com.service.QueueMessageListener" />
 
 <!-- 顯示注入消息監(jiān)聽(tīng)容器,配置連接工廠,監(jiān)聽(tīng)的目標(biāo)是QueueDestination 或 topicDestination,監(jiān)聽(tīng)器是上面自定義的監(jiān)聽(tīng)器 -->
  <bean id="queueListenerContainer"
     class="org.springframework.jms.listener.DefaultMessageListenerContainer">
    <property name="connectionFactory" ref="connectionFactory" />
    <property name="destination" ref="QueueDestination" />
    <!--<property name="destination" ref="topicDestination" />-->
    <property name="messageListener" ref="queueMessageListener" />
  </bean>

可以看到,當(dāng)使用消息監(jiān)聽(tīng)器之后,每發(fā)送一條消息立馬就會(huì)被監(jiān)聽(tīng)到:

怎么在ActiveMQ中利用Spring收發(fā)消息

第二種方式————發(fā)布/訂閱(Topic)

同步的方式

類似點(diǎn)對(duì)點(diǎn)中同步的方式,只是每個(gè)消費(fèi)者都能收到生產(chǎn)者發(fā)出的全部消息,不再贅述。

異步監(jiān)聽(tīng)的方式

啟動(dòng)兩個(gè)監(jiān)聽(tīng)器(兩個(gè)消費(fèi)者),對(duì)消息進(jìn)行異步監(jiān)聽(tīng)。看是否各自能收到生產(chǎn)者發(fā)送的消息。

<!-- 配置兩個(gè)監(jiān)聽(tīng)器 -->
<bean id="messageListener" class="com.service.TopicMessageListener" />
<bean id="messageListener2" class="com.service.TopicMessageListener2" />

怎么在ActiveMQ中利用Spring收發(fā)消息

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。

網(wǎng)頁(yè)標(biāo)題:怎么在ActiveMQ中利用Spring收發(fā)消息-創(chuàng)新互聯(lián)
文章鏈接:http://jinyejixie.com/article28/csdicp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、網(wǎng)站導(dǎo)航、網(wǎng)站設(shè)計(jì)公司微信小程序、網(wǎng)站策劃、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站建設(shè)
惠水县| 湖州市| 衡东县| 沈丘县| 田东县| 谷城县| 漳州市| 叶城县| 彭山县| 观塘区| 无极县| 西峡县| 平南县| 黔西县| 蒲江县| 环江| 阿瓦提县| 突泉县| 南澳县| 平湖市| 天峻县| 衡阳县| 什邡市| 周宁县| 临安市| 金昌市| 昌邑市| 北碚区| 武平县| 普安县| 凤台县| 盐津县| 富裕县| 临湘市| 宁都县| 邛崃市| 池州市| 十堰市| 古浪县| 岐山县| 湾仔区|