gpt4 book ai didi

Spring amqp 不将消息发布到队列,而是发布到 Exchange

转载 作者:行者123 更新时间:2023-12-03 21:38:46 25 4
gpt4 key购买 nike

我正在尝试为具有多个队列的 RabbitMQ 测试和基准 spring-amqp,因此我为每个队列创建了 rabbit 模板并使用它来发送消息。消息发送成功,我可以看到在交换中发布的消息,但我在队列中看不到任何内容。我猜这是非常小的设置,但无法弄清楚。

这是我的 applicationContext.xml

<bean id="banchmarkConnectionFactory" class="org.springframework.amqp.rabbit.connection.CachingConnectionFactory">
<constructor-arg ref="benchmarkAmqpHost"/>
<property name="username" ref="benchmarkAmqpUser"/>
<property name="password" ref="benchmarkAmqpPass"/>
<property name="virtualHost" ref="benchmarkAmqpVHost"/>
<property name="channelCacheSize" value="10"/>
</bean>
<rabbit:template id="benchmarkAmqpTemplate"
connection-factory="banchmarkConnectionFactory"
exchange="my_exchange"
queue="BenchmarkQueue"
routing-key="BenchmarkQueue" />
<rabbit:admin connection-factory="banchmarkConnectionFactory"/>
<rabbit:queue name="BenchmarkQueue" auto-delete="true" durable="false" auto-declare="true"/>

这是我的代码,它使用 benchmarkAmqpTemplate 发布到队列。

public class publishMessage {
@Autowired
private RabbitTemplate benchmarkAmqpTemplate;

protected void publish(String payload) {
benchmarkAmqpTemplate.setQueue("BenchmarkQueue");
benchmarkAmqpTemplate.convertAndSend("my_exchange", "BenchmarkQueue", payload);

}
}

当我使用 HelloWorld example它确实在队列中发布了一条消息,所以想知道我是否做错了什么。更新我能够通过在我的上下文 xml 中添加 direct-exchange 标记来解决这个问题。我的完整 xml 如下所示:

    <beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:rabbit="http://www.springframework.org/schema/rabbit"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsdhttp://www.springframework.org/schema/rabbit http://www.springframework.org/schema/rabbit/spring-rabbit.xsd">

<bean id="banchmarkConnectionFactory" class="org.springframework.amqp.rabbit.connection.CachingConnectionFactory">
<constructor-arg ref="benchmarkAmqpHost"/>
<property name="username" ref="benchmarkAmqpUser"/>
<property name="password" ref="benchmarkAmqpPass"/>
<property name="virtualHost" ref="benchmarkAmqpVHost"/>
<property name="channelCacheSize" value="10"/>
</bean>
<rabbit:template id="benchmarkAmqpTemplate"
connection-factory="banchmarkConnectionFactory"
exchange="my_exchange"
queue="BenchmarkQueue"
routing-key="BenchmarkQueue" />
<rabbit:admin connection-factory="banchmarkConnectionFactory"/>
<rabbit:queue name="BenchmarkQueue" auto-delete="true" durable="false" auto-declare="true"/>
<rabbit:direct-exchange name="my_exchange">
<rabbit:bindings>
<rabbit:binding queue="BenchmarkQueue" key="BenchmarkQueue" />
</rabbit:bindings>
</rabbit:direct-exchange>
</beans>

最佳答案

抱歉,您好像对 AMQP 协议(protocol)有一点误解。

消息使用正确的 routingKey 发布到 Exchange。发布者 (RabbitTemplate) 根本不需要了解队列。

queue 是接收者的一部分,queue 的订阅者。

还有一个介于两者之间的特性 - bindingqueue 绑定(bind)到相应 routingKey 下的 Exchange。一个队列可以绑定(bind)到具有不同路由键的多个交换。默认情况下,所有队列都绑定(bind)到默认交换器 (""),routingKeys 等于它们的 names。

请参阅 RabbitMQ 网站了解更多信息。

关于Spring amqp 不将消息发布到队列,而是发布到 Exchange,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30120242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com