3.2.2 消息接收:
@Component
public class SpringRabbitListener {
@RabbitListener ( queues = "simple.queue" )
public void listenSimpleQueueMessage ( String msg) throws InterruptedException {
System . out. println ( "spring 消费者接收到消息:【" + msg + "】" ) ;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
注意:消息接收的方法参数类型要和消息的发送的参数类型一致。 例如上面都是 String 类型。
3.3 WorkQueues 模型:
Work queues,任务模型。简单来说就是让多个消费者绑定到一个队列,共同消费队列中的消息 。
当消息处理比较耗时的时候,可能生产消息的速度会远远大于消息的消费速度。长此以往,消息就会堆积越来越多,无法及时处理。
此时就可以使用work 模型,多个消费者共同处理消息处理,同一条消息只会被一个消费者处理,这样,消息处理的速度就能大大提高了 。
不过在 RabbitMQ 中该模型还存在一个问题:消息是平均分配给每个消费者,并没有考虑到消费者的处理能力。
这显然是不合理的。
改进:
在spring中有一个简单的配置,可以解决这个问题,在 application.yml 文件中添加配置:
spring :
rabbitmq :
listener :
simple :
prefetch : 1
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
这样就能实现能者多劳 的效果,充分利用了每一个消费者的处理能力,可以有效避免消息积压问题。
总结:
Work模型的使用:
多个消费者绑定到一个队列,同一条消息只会被一个消费者处理。 通过设置prefetch来控制消费者预取的消息数量。
3.4 交换机类型:
在之前的案例中,都没有交换机,生产者直接发送消息到队列。而一旦引入交换机,消息发送的模式会有很大变化:
可以看到,在订阅模型中,多了一个exchange角色,而且过程略有变化:
Publisher :生产者,不再发送消息到队列中,而是发给交换机。Exchange :交换机,一方面,接收生产者发送的消息。另一方面,知道如何处理消息,例如递交给某个特别队列、递交给所有队列、或是将消息丢弃。到底如何操作,取决于Exchange的类型。Queue :消息队列也与以前一样,接收消息、缓存消息。不过队列一定要与交换机绑定。Consumer :消费者,与以前一样,订阅队列,没有变化。
Exchange(交换机)只负责转发消息,不具备存储消息的能力 ,因此如果没有任何队列与Exchange绑定,或者没有符合路由规则的队列,那么消息会丢失!
交换机的类型有四种:
Fanout :广播,将消息交给所有绑定到交换机的队列。Direct :订阅,基于 RoutingKey(路由 key)发送给订阅了消息的队列。Topic :通配符订阅,与 Direct 类似,只不过 RoutingKey 可以使用通配符。Headers :头匹配,基于 MQ 的消息头匹配,用的较少。
我们这里讲解前面三种交换机。
3.4.1 Fanout 交换机:
在广播模式下,消息发送流程是这样的:
总结:
交换机的特点:
接收 publisher 发送的消息,将消息按照规则路由到与之绑定的队列。 不能缓存消息,路由失败,消息丢失。 FanoutExchange 的会将消息路由到每个绑定的队列。
3.4.2 Direct 交换机:
在 Fanout 模式中,一条消息,会被所有订阅的队列都消费。但是,在某些场景下,我们希望不同的消息被不同的队列消费。这时就要用到 Direct 类型的 Exchange。
在 Direct 模型下:
队列与交换机的绑定,不能是任意绑定了,而是要指定一个RoutingKey
(路由key)。 消息的发送方在向 Exchange 发送消息时,也必须指定消息的 RoutingKey
。 Exchange 不再把消息交给每一个绑定的队列,而是根据消息的Routing Key
进行判断,只有队列的Routingkey
与消息的 Routing key
完全一致,才会接收到消息。
总结:
描述下 Direct 交换机与 Fanout 交换机的差异?
Fanout 交换机将消息路由给每一个与之绑定的队列。 Direct 交换机根据 RoutingKey 判断路由给哪个队列。 如果 Direct 交换机绑定的多个队列具有相同的 RoutingKey,则与 Fanout 功能类似。
3.4.3 Topic 交换机:
Topic
类型的Exchange
与Direct
相比,都是可以根据RoutingKey
把消息路由到不同的队列。
只不过Topic
类型Exchange
可以让队列在绑定BindingKey
的时候使用通配符!
**BindingKey 一般都是由一个或多个单词组成,多个单词之间以.
分割。**例如: item.insert
通配符规则:
#
:匹配 0 个或多个词。*
:匹配不多不少恰好 1 个词。
总结:
描述下 Direct 交换机与 Topic 交换机的差异?
Topic 交换机与队列绑定时的 bindingKey 可以指定通配符。 #
:代表 0 个或多个词。*
:代表 1 个词。
3.5 声明交换机和队列:
在之前我们都是基于RabbitMQ控制台来创建队列、交换机。但是在实际开发时,队列和交换机是程序员定义的,将来项目上线,又要交给运维去创建。那么程序员就需要把程序中运行的所有队列和交换机都写下来,交给运维。在这个过程中是很容易出现错误的。
因此推荐的做法是由程序启动时检查队列和交换机是否存在,如果不存在自动创建。
**声明交换机和队列一般是消息的接收者来做的。**这里的背景是微服务,消息的发送者和接收者一般是在不同的项目里面。
注意:如果项目中没有消费者(使用 @RabbitListener),可能创建交换机和队列会失败(MQ 上显示不出来,但是 spring 中对象成功创建),至于为什么会这样,我也不清楚,去网上找,问 AI 都没有这方面的资料。这个问题是我在项目中遇到的,解决了很久,算是比较小众的问题,如果有相同情况的友友,可以试试)。
3.5.1 使用 API:
SpringAMQP 提供了一个 Queue 类,用来创建队列:
SpringAMQP 还提供了一个 Exchange 接口,来表示所有不同类型的交换机:
我们可以自己创建队列和交换机,不过 SpringAMQP 还提供了 ExchangeBuilder 来简化这个过程:
而在绑定队列和交换机时,则需要使用 BindingBuilder 来创建 Binding 对象:
3.5.1.1 fanout 示例:
package com. itheima. consumer. config ;
import org. springframework. amqp. core. Binding ;
import org. springframework. amqp. core. BindingBuilder ;
import org. springframework. amqp. core. FanoutExchange ;
import org. springframework. amqp. core. Queue ;
import org. springframework. context. annotation. Bean ;
import org. springframework. context. annotation. Configuration ;
@Configuration
public class FanoutConfig {
@Bean
public FanoutExchange fanoutExchange ( ) {
return new FanoutExchange ( "hmall.fanout" ) ;
}
@Bean
public Queue fanoutQueue1 ( ) {
return new Queue ( "fanout.queue1" ) ;
}
@Bean
public Binding bindingQueue1 ( Queue fanoutQueue1, FanoutExchange fanoutExchange) {
return BindingBuilder . bind ( fanoutQueue1) . to ( fanoutExchange) ;
}
@Bean
public Queue fanoutQueue2 ( ) {
return new Queue ( "fanout.queue2" ) ;
}
@Bean
public Binding bindingQueue2 ( Queue fanoutQueue2, FanoutExchange fanoutExchange) {
return BindingBuilder . bind ( fanoutQueue2) . to ( fanoutExchange) ;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
class="hide-preCode-box">1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
3.5.1.2 direct 示例:
direct 模式由于要绑定多个 KEY,会非常麻烦,每一个 Key 都要编写一个 binding:
package com. itheima. consumer. config ;
import org. springframework. amqp. core. * ;
import org. springframework. context. annotation. Bean ;
import org. springframework. context. annotation. Configuration ;
@Configuration
public class DirectConfig {
@Bean
public DirectExchange directExchange ( ) {
return ExchangeBuilder . directExchange ( "hmall.direct" ) . build ( ) ;
}
@Bean
public Queue directQueue1 ( ) {
return new Queue ( "direct.queue1" ) ;
}
@Bean
public Binding bindingQueue1WithRed ( Queue directQueue1, DirectExchange directExchange) {
return BindingBuilder . bind ( directQueue1) . to ( directExchange) . with ( "red" ) ;
}
@Bean
public Binding bindingQueue1WithBlue ( Queue directQueue1, DirectExchange directExchange) {
return BindingBuilder . bind ( directQueue1) . to ( directExchange) . with ( "blue" ) ;
}
@Bean
public Queue directQueue2 ( ) {
return new Queue ( "direct.queue2" ) ;
}
@Bean
public Binding bindingQueue2WithRed ( Queue directQueue2, DirectExchange directExchange) {
return BindingBuilder . bind ( directQueue2) . to ( directExchange) . with ( "red" ) ;
}
@Bean
public Binding bindingQueue2WithYellow ( Queue directQueue2, DirectExchange directExchange) {
return BindingBuilder . bind ( directQueue2) . to ( directExchange) . with ( "yellow" ) ;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
class="hide-preCode-box">1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
由于 Topic 交换机的声明和 Direct 差不多,大家照着上面的 Direct ,修改一下类型就能成功创建,这里就不演示了。
3.5.2 使用注解:
基于 @Bean 的方式声明队列和交换机比较麻烦,尤其是 direct 交换机,Spring 还提供了基于注解方式来声明。
3.5.2.1 fanout 示例:
@RabbitListener ( bindings = @QueueBinding (
value = @Queue ( name = "fanout.queue1" ) ,
exchange = @Exchange ( name = "hmall.fanout" , type = ExchangeTypes . FANOUT )
) )
public void listenFanoutQueue1 ( String msg) {
System . out. println ( "消费者1接收到fanout.queue1的消息:【" + msg + "】" ) ;
}
@RabbitListener ( bindings = @QueueBinding (
value = @Queue ( name = "fanout.queue2" ) ,
exchange = @Exchange ( name = "hmall.fanout" , type = ExchangeTypes . FANOUT )
) )
public void listenFanoutQueue2 ( String msg) {
System . out. println ( "消费者2接收到fanout.queue2的消息:【" + msg + "】" ) ;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
3.5.2.2 direct 示例:
@RabbitListener ( bindings = @QueueBinding (
value = @Queue ( name = "direct.queue1" ) ,
exchange = @Exchange ( name = "hmall.direct" , type = ExchangeTypes . DIRECT ) ,
key = { "red" , "blue" }
) )
public void listenDirectQueue1 ( String msg) {
System . out. println ( "消费者1接收到direct.queue1的消息:【" + msg + "】" ) ;
}
@RabbitListener ( bindings = @QueueBinding (
value = @Queue ( name = "direct.queue2" ) ,
exchange = @Exchange ( name = "hmall.direct" , type = ExchangeTypes . DIRECT ) ,
key = { "red" , "yellow" }
) )
public void listenDirectQueue2 ( String msg) {
System . out. println ( "消费者2接收到direct.queue2的消息:【" + msg + "】" ) ;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
class="hide-preCode-box">1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
3.6 消息转化器:
convertAndSend 方法可以任意类型的消息。
而在数据传输时,它会把你发送的消息序列化为字节发送给 MQ,接收消息的时候,还会把字节反序列化为 Java 对象。
只不过,默认情况下 Spring 采用的序列化方式是 JDK 序列化。JDK 序列化存在下列问题:
所以我们需要换一个消息转化器。
这里采用 JSON 方式来做序列化和反序列化。
在发送者和接受者两个服务中都引入依赖。
< dependency>
< groupId> com.fasterxml.jackson.dataformat groupId>
< artifactId> jackson-dataformat-xml artifactId>
< version> 2.9.10 version>
dependency>
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
注意,如果项目中引入了spring-boot-starter-web
依赖,则无需再次引入Jackson
依赖。
配置消息转换器,在发送者和接受者两个服务的启动类中添加一个 Bean 即可:
@Bean
public MessageConverter messageConverter ( ) {
Jackson2JsonMessageConverter jackson2JsonMessageConverter = new Jackson2JsonMessageConverter ( ) ;
jackson2JsonMessageConverter. setCreateMessageIds ( true ) ;
return jackson2JsonMessageConverter;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
消息转换器中添加的 messageId 可以便于我们将来做幂等性判断。
参考文献:
结语: 其实写博客不仅仅是为了教大家,同时这也有利于我巩固知识点,和做一个学习的总结,由于作者水平有限,对文章有任何问题还请指出,非常感谢。如果大家有所收获的话,还请不要吝啬你们的点赞收藏和关注,这可以激励我写出更加优秀的文章。
data-report-view="{"mod":"1585297308_001","spm":"1001.2101.3001.6548","dest":"https://blog.csdn.net/2301_80035594/article/details/144263617","extend1":"pc","ab":"new"}">>
评论记录:
回复评论: