大数据|spring封装的RabbitMQ

spring这么牛逼的团队,封装了RabbitMQ,简化了RabbitMQ的使用,那肯定是要使用spring-rabbit了
一、简介
大数据|spring封装的RabbitMQ
文章图片

大数据|spring封装的RabbitMQ
文章图片

【大数据|spring封装的RabbitMQ】二、使用方法
1、消费者

1 public class Foo { 2 3//具体执行业务的方法 4public void listen(String foo) { 5System.out.println("消费者: " + foo); 6} 7 }

2、生产者
public class SpringMain {public static void main(final String... args) throws Exception { AbstractApplicationContext ctx = new ClassPathXmlApplicationContext( "classpath:spring/rabbitmq-context.xml"); //RabbitMQ模板 RabbitTemplate template = ctx.getBean(RabbitTemplate.class); //发送消息 template.convertAndSend("Hello, world!"); Thread.sleep(1000); // 休眠1秒 ctx.destroy(); //容器销毁 } }

注意:这个好像是前面的类似创建交换机、创建队列、以及交换机和队列的绑定,似乎都没有看到,不是不见了,而是都放到配置文件中去了
3、配置文件
3.1 定义连接工厂
1 2

3.2 定义模板(可以指定交换机或队列)
1 2

3.3 定义队列、交换机、以及完成队列和交换机的绑定
1 2 3 4 5 6 7 8 9

3.4 定义监听
1 2 3 4 5 6

3.5 定义管理,用于管理队列、交换机等
1 2

三、持久化交换机和队列
持久化:将交换机或队列的数据保存到磁盘,服务器宕机或重启之后依然存在。
非持久化:将交换机或队列的数据保存到内存,服务器宕机或重启之后将不存在。
非持久化的性能高于持久化。
如何选择持久化?非持久化?--看需求。
大数据|spring封装的RabbitMQ
文章图片

大数据|spring封装的RabbitMQ
文章图片

转载于:https://www.cnblogs.com/ssh-html/p/10548099.html

    推荐阅读