您好,登錄后才能下訂單哦!
這篇文章主要介紹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怎么使用消息中間件”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。