赞
踩
Date date = new Date();
String value = new SimpleDateFormat(“yyyy-MM-dd hh:mm:ss”).format(date);
System.out.println(“send message {}” + value);
City city= new City();
city.setCityName(“aaaa”);
city.setDescription(“bbb”);
city.setProvinceId((long)111);
rabbitTemplate.convertAndSend(“topic.mess”, city); //使用默认的队列
//}
}).start();
return “ok”;
}
}
消费者直接使用就可以了(可以传对象 基本类型)。需要@RabbitListener注解。
@Component
@RabbitListener(queues = “topic.mess”) //topic交换机
public class Consumer2 {
@RabbitHandler
public void consumeMessage(City city) {
System.out.println(“consume message {} 2222222:” + city);
}
}
声名两个队列和一个topic交换器,然后通过路由键绑定他们之间的关系,路由键和队列名相同就能匹配,但是topic可以模糊匹配 #可以代替一段字符。
@Configuration
public class RabbitMQConfig {
// -------------------------topic队列
// 创建队列
@Bean
public Queue topicQueue() {
return new Queue(“topic.mess”);
}
@Bean
public Queue topicQueue2() {
return new Queue(“topic.mess2”);
}
// 创建 topic 类型的交换器
@Bean
public TopicExchange topicExchange() {
return new TopicExchange(“topic”);
}
// 使用路由键(routingKey)把队列(Queue)绑定到交换器(Exchange) Topic交换器通过routingKey与队列绑定
@Bean
public Binding bindingA(Queue topicQueue, TopicExchange topicExchange) {
return BindingBuilder.bind(topicQueue).to(topicExchange).with(“topic.mess”);
}
@Bean
public Binding bindingB(Queue topicQueue2, TopicExchange topicExchange) {
return BindingBuilder.bind(topicQueue2).to(topicExchange).with(“topic.#”);
}
}
直接调用API发送消息。消费者发送到队列,因为有模糊匹配的规则,topic.mess可以匹配 topic.mess和topic.mess2队列 而topic.mess2只能匹配到topic.#。
@RestController
public class ProducerController {
@Autowired
private RabbitTemplate rabbitTemplate;
@GetMapping(“/sendMessage”)
public Object sendMessage() {
new Thread(() -> {
//for (int i = 0; i < 100; i++) {
Date date = new Date();
String value = new SimpleDateFormat(“yyyy-MM-dd hh:mm:ss”).format(date);
System.out.println(“send message {}” + value);
City city= new City();
city.setCityName(“aaaa”);
city.setDescription(“bbb”);
city.setProvinceId((long)111);
rabbitTemplate.convertAndSend(“topic”, “topic.mess”, city);
rabbitTemplate.convertAndSend(“topic”, “topic.mess2”, city);
//}
}).start();
return “ok”;
}
}
消费者直接接收。
@Component
@RabbitListener(queues = “topic.mess”) //topic交换机
public class Consumer2 {
@RabbitHandler
public void consumeMessage(City city) {
System.out.println(“consume message {} 2222222:” + city);
}
}
在配置文件中声名队列和交换器,然后绑定。
// --------FanoutExchange绑定
// -------------------------Fanout 队列
@Bean
FanoutExchange fanoutExchange() {
return new FanoutExchange(“fanoutExchange”);
}
@Bean
public Queue fanoutQueue() {
return new Queue(“fanoutqueue”);
}
@Bean
public Queue fanoutQueue2() {
return new Queue(“fanoutqueue2”);
}
@Bean
public Binding bindingC(Queue fanoutQueue, FanoutExchange fanoutExchange) {
return BindingBuilder.bind(fanoutQueue).to(fanoutExchange);
}
@Bean
public Binding bindingD(Queue fanoutQueue2, FanoutExchange fanoutExchange) {
return BindingBuilder.bind(fanoutQueue2).to(fanoutExchange);
}
调用API发送消息。
@RestController
public class ProducerController {
@Autowired
private RabbitTemplate rabbitTemplate;
@GetMapping(“/sendMessage”)
public Object sendMessage() {
new Thread(() -> {
//for (int i = 0; i < 100; i++) {
Date date = new Date();
String value = new SimpleDateFormat(“yyyy-MM-dd hh:mm:ss”).format(date);
System.out.println(“send message {}” + value);
City obj = new City();
obj.setCityName(“aaaa”);
obj.setDescription(“bbb”);
obj.setProvinceId((long)111);
rabbitTemplate.convertAndSend(“fanoutExchange”,“”, value); //使用默认的队列
//}
}).start();
return “ok”;
}
}
然后接收,所有绑定队列的都可以接收到。
@Component
@RabbitListener(queues = “fanoutqueue2”)
public class Consumer {
@RabbitHandler
public void consumeMessage(String message) {
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Java工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Java开发知识点,真正体系化!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
如果你觉得这些内容对你有帮助,可以扫码获取!!(备注Java获取)
对于面试还是要好好准备的,尤其是有些问题还是很容易挖坑的,例如你为什么离开现在的公司(你当然不应该抱怨现在的公司有哪些不好的地方,更多的应该表明自己想要寻找更好的发展机会,自己的一些现实因素,比如对于我而言是现在应聘的公司离自己的家更近,又或者是自己工作到达了迷茫期,想跳出迷茫期等等)
Java面试精选题、架构实战文档
整理不易,觉得有帮助的朋友可以帮忙点赞分享支持一下小编~
你的支持,我的动力;祝各位前程似锦,offer不断!
《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!
le=“zoom: 33%;” />
对于面试还是要好好准备的,尤其是有些问题还是很容易挖坑的,例如你为什么离开现在的公司(你当然不应该抱怨现在的公司有哪些不好的地方,更多的应该表明自己想要寻找更好的发展机会,自己的一些现实因素,比如对于我而言是现在应聘的公司离自己的家更近,又或者是自己工作到达了迷茫期,想跳出迷茫期等等)
[外链图片转存中…(img-jGc1QiPV-1713373862028)]
Java面试精选题、架构实战文档
整理不易,觉得有帮助的朋友可以帮忙点赞分享支持一下小编~
你的支持,我的动力;祝各位前程似锦,offer不断!
《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。