spring boot整合RabbitMQ(Direct模式)

作者:牛头人 时间:2021-12-16 10:50:22 

springboot集成RabbitMQ非常简单,如果只是简单的使用配置非常少,springboot提供了spring-boot-starter-amqp项目对消息各种支持。

1.新建一个Spring Boot工程,命名为:“rabbitmq-hello”。

在pom.xml中引入如下依赖内容,其中spring-boot-starter-amqp用于支持RabbitMQ。


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

2.在application.properties中配置关于RabbitMQ的连接和用户信息,用户可以回到上面的安装内容,在管理页面中创建用户。


spring.application.name=rabbitmq-hello
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=admin
spring.rabbitmq.password=123456

3.创建消息生产者Sender。通过注入AmqpTemplate接口的实例来实现消息的发送,AmqpTemplate接口定义了一套针对AMQP协议的基础操作。

在Spring Boot中会根据配置来注入其具体实现。在该生产者,我们会产生一个字符串,并发送到名为hello的队列中。


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

4.创建消息消费者Receiver。

通过@RabbitListener注解定义该类对hello队列的监听,并用@RabbitHandler注解来指定对消息的处理方法。所以,该消费者实现了对hello队列的消费,消费操作为输出消息的字符串内容。


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

5.创建RabbitMQ的配置类RabbitConfig,用来配置队列、交换器、路由等高级信息。这里我们以入门为主,先以最小化的配置来定义,以完成一个基本的生产和消费过程。


@Configuration
public class RabbitConfig {
@Bean
public Queue helloQueue() {
 return new Queue("hello");
}
}

6.创建应用主类:


@SpringBootApplication
public class HelloApplication {
public static void main(String[] args) {
 SpringApplication.run(HelloApplication.class, args);
}
}

7.创建单元测试类,用来调用消息生产:


@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = HelloApplication.class)
public class HelloApplicationTests {
 @Autowired
 private Sender sender;
 @Test
 public void hello() throws Exception {
   sender.send();
 }
}

8.启动应用主类,从控制台中,我们看到如下内容,程序创建了一个访问127.0.0.1:5672中admin的连接。


o.s.a.r.c.CachingConnectionFactory    : Created new connection: SimpleConnection@29836d32 [delegate=amqp://admin@127.0.0.1:5672/]

同时,我们通过RabbitMQ的控制面板,可以看到Connection和Channels中包含当前连接的条目。

9.运行单元测试类,我们可以看到控制台中输出下面的内容,消息被发送到了RabbitMQ Server的hello队列中。

Sender : hello Sun Sep 25 11:06:11 CST 2016

10.切换到应用主类的控制台,我们可以看到类似如下输出,消费者对hello队列的监听程序执行了,并输出了接受到的消息信息。


Receiver : hello Sun Sep 25 11:06:11 CST 2016

通过上面的示例,我们在Spring Boot应用中引入spring-boot-starter-amqp模块,进行简单配置就完成了对RabbitMQ的消息生产和消费的开发内容。

需要注意的地方,Direct模式相当于一对一模式,一个消息被发送者发送后,会被转发到一个绑定的消息队列中,然后被一个接收者接收!

实际上RabbitMQ还可以支持发送对象:当然由于涉及到序列化和反序列化,该对象要实现Serilizable接口.HelloSender做出如下改写:


public void send() {
 User user=new User();  //实现Serializable接口
 user.setUsername("hlhdidi");
 user.setPassword("123");
 template.convertAndSend("queue",user);
}
HelloReceiver做出如下改写:
@RabbitListener(queues="queue")  // * 监听指定的Queue
public void process1(User user) {  //用User作为参数
 System.out.println("Receive1:"+user);
}

以上所述是小编给大家介绍的spring boot整合RabbitMQ(Direct模式)网站的支持!

来源:http://www.cnblogs.com/web424/p/6763031.html

标签:springboot,rabbitmq
0
投稿

猜你喜欢

  • 带你重新认识MyBatis的foreach

    2023-11-21 08:44:54
  • Spring中BeanFactory与FactoryBean接口的区别详解

    2022-06-17 11:22:22
  • Java如何跳过https的ssl证书验证详解

    2023-08-24 11:34:56
  • java使用dom4j解析xml配置文件实现抽象工厂反射示例

    2022-11-10 15:45:38
  • android底部弹出iOS7风格对话选项框(QQ对话框)--第三方开源之IOS_Dialog_Library

    2023-02-18 17:42:44
  • ListView实现下拉动态渲染数据

    2022-10-31 11:19:12
  • Java 实战项目之精美物流管理系统的实现流程

    2023-10-30 19:53:46
  • idea2019版与maven3.6.2版本不兼容的解决方法

    2021-07-13 16:48:10
  • SpringBoot+Vue.js实现前后端分离的文件上传功能

    2023-08-10 08:11:18
  • Unity3D生成一段隧道网格的方法

    2022-02-22 23:46:27
  • C#解决多IfElse判断语句和Switch语句问题的方法分享

    2023-04-06 18:36:22
  • Android多边形区域递归种子填充算法的示例代码

    2022-08-28 05:07:22
  • C#中反射和扩展方法如何运用

    2023-08-02 01:43:16
  • Java中比较抽象类与接口的异同

    2023-09-24 01:50:40
  • Android图片框架Glide原理深入探索

    2021-07-22 05:08:42
  • 关于@Entity和@Table注解的用法详解

    2022-05-15 15:29:04
  • C#实现数据包加密与解密实例详解

    2022-05-14 18:44:50
  • springboot集成swagger3与knife4j的详细代码

    2023-11-27 18:22:58
  • 使用Stargate访问K8ssandra的过程之Springboot整合Cassandra

    2022-02-08 23:12:25
  • Java实现分布式系统限流

    2022-05-31 22:38:05
  • asp之家 软件编程 m.aspxhome.com