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

溫馨提示×

溫馨提示×

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

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

springboot怎么使用消息中間件

發布時間:2021-09-28 14:32:25 來源:億速云 閱讀:134 作者:小新 欄目:編程語言

這篇文章主要介紹springboot怎么使用消息中間件,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

前言

使用SpringBoot集成rabbitmq實現一個發送和接收

內容

1.引入依賴

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

2.application.properties

#rabbitmq配置spring.application.name=springboot-mqspring.rabbitmq.host=192.168.17.129spring.rabbitmq.port=5672spring.rabbitmq.username=mytestspring.rabbitmq.password=mytest

3.rabbitmap配置類

import org.springframework.amqp.core.Queue;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class RabbitMQConfig { @Bean public Queue mqQueue(){  return new Queue("mqboot"); }}

4.發送類< 大專欄 zyzx(53)-springboot使用消息中間件/h6>

@Componentpublic class Sender { @Autowired private AmqpTemplate rabbitTemplate; public void send(){  String content = "send: hello"+new Date();  System.out.println("Sender:"+content)  this.rabbitTemplate.convertAndSend("mqboot",content); }}

收類

@Component@RabbitListener(queues = "mqboot")public class Receiver { @RabbitHandler public void process(String data){  System.out.println("Receiver:"+data); }}

6.測試

啟動springBoot

如下表明:連接成功:

@RunWith(SpringRunner.class)@SpringBootTestpublic class ApplicationTests { @Autowired private TeacherRepository teacherRepository; /*@Autowired private JavaMailSender javaMailSender;*/ @Autowired private Sender sender; @Test public void contextLoads() {  //mq測試  sender.send(); }}

以上是“springboot怎么使用消息中間件”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

辽宁省| 濮阳市| 保靖县| 阳原县| 盐边县| 桐梓县| 禹州市| 东宁县| 济源市| 喀什市| 焦作市| 昭平县| 永济市| 湖州市| 章丘市| 巫溪县| 永州市| 永仁县| 北碚区| 元谋县| 新宁县| 烟台市| 长春市| 兴安盟| 宁陕县| 江北区| 蛟河市| 军事| 三门峡市| 阿拉善右旗| 浦城县| 高邑县| 嵩明县| 长泰县| 建水县| 平顺县| 崇阳县| 花莲县| 新昌县| 阳信县| 崇州市|