91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Java SpringBoot如何整合ActiveMQ

發布時間:2021-11-20 15:23:37 來源:億速云 閱讀:149 作者:柒染 欄目:軟件技術

Java SpringBoot如何整合ActiveMQ,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

一、 如果要想在項目之中去使用 ActiveMQ 組件,則應該為項目添加依賴支持庫,修改 pom.xml 配置文件:

 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-activemq</artifactId>
        </dependency>

 二、修改 application.yml 配置文件進行 activemq 的配置;

server:
  port: 80
spring:
  messages:
    basename: i18n/Messages,i18n/Pages
  jms:
    pub-sub-domain: false   # 配置消息的類型,如果是true則表示為topic消息,如果為false表示Queue消息
  activemq:
    user: studyjava    # 連接用戶名
    password: hello   # 連接密碼
    broker-url: tcp://activemq-server:61616 # 消息組件的連接主機信息

三、 隨后定義一個消息的消費者,消費者主要是進行一個監聽控制,在 SpringBoot 里面可以直接利用注解@JmsListener進行監聽:

package cn.study.microboot.consumer;
import org.springframework.jms.annotation.JmsListener;
import org.springframework.stereotype.Service;
@Service
public class MessageConsumerService {
    @JmsListener(destination="study.msg.queue")
    public void receiveMessage(String text) {    // 進行消息接收處理
        System.err.println("【*** 接收消息 ***】" + text);
    }
}

四、 隨后建立消息的發送者服務,一般而言如果進行消息的發送往往會準備出一個業務接口來:

package cn.study.microboot.producer;
public interface IMessageProducerService {   
 public void sendMessage(String msg) ;
  }

 五、隨后建立一個配置程序類,定義 ActiveMQ 的消息發送模版處理類:

package cn.study.microboot.config;
import javax.jms.Queue;
import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jms.annotation.EnableJms;
@Configuration
@EnableJms
public class ActiveMQConfig {
    @Bean
    public Queue queue() {
        return new ActiveMQQueue("study.msg.queue") ;
    }
}

六、創建消息發送的子類實現消息發送處理:

package cn.study.microboot.producer.impl;
import javax.annotation.Resource;
import javax.jms.Queue;
import org.springframework.jms.core.JmsMessagingTemplate;
import org.springframework.stereotype.Service;
import cn.study.microboot.producer.IMessageProducerService;
@Service
public class MessageProducerServiceImpl implements IMessageProducerService {
    @Resource
    private JmsMessagingTemplate jmsMessagingTemplate;
    @Resource
    private Queue queue;
    @Override
    public void sendMessage(String msg) {
        this.jmsMessagingTemplate.convertAndSend(this.queue, msg);
    }
}

七、編寫測試類來觀察消息的處理:

package cn.study.microboot.test;
import javax.annotation.Resource;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import cn.study.microboot.StartSpringBootMain;
import cn.study.microboot.producer.IMessageProducerService;
@SpringBootTest(classes = StartSpringBootMain.class)
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
public class TestActiveMQ {
    @Resource
    private IMessageProducerService messageProducer;
    @Test
    public void testSend() throws Exception {
        for (int x = 0; x < 10; x++) {
            this.messageProducer.sendMessage("study - " + x);
        }
    }
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

抚宁县| 安图县| 永州市| 资讯| 普安县| 呼玛县| 普兰县| 左权县| 鹰潭市| 泗洪县| 青浦区| 绩溪县| 淮安市| 台湾省| 云龙县| 大余县| 阜城县| 上犹县| 淮阳县| 石屏县| 同德县| 深水埗区| 平阳县| 永修县| 璧山县| 卢龙县| 唐海县| 二手房| 宁蒗| 新竹县| 嘉禾县| 西峡县| 肥东县| 南投市| 宜昌市| 夏津县| 台东县| 东莞市| 永济市| 吉水县| 横山县|