gpt4 book ai didi

Spring Cloud Stream 不创建队列

转载 作者:行者123 更新时间:2023-12-01 14:45:22 24 4
gpt4 key购买 nike

我正在尝试使用 RabbitMQ 配置一个简单的 Spring Cloud Stream 应用程序。我使用的代码大部分取自 spring-cloud-stream-samples .我有一个入口点:

@SpringBootApplication
public class DemoApplication {

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

以及示例中的简单消息生成器:

@EnableBinding(Source.class)
public class SourceModuleDefinition {

private String format = "yyyy-MM-dd HH:mm:ss";

@Bean
@InboundChannelAdapter(value = Source.OUTPUT, poller = @Poller(fixedDelay = "${fixedDelay}", maxMessagesPerPoll = "1"))
public MessageSource<String> timerMessageSource() {
return () -> new GenericMessage<>(new SimpleDateFormat(this.format).format(new Date()));
}

}

此外,这里是application.yml配置:

fixedDelay: 5000
spring:
cloud:
stream:
bindings:
output:
destination: test

当我运行示例时,它会连接到 Rabbit 并创建一个名为 test 的交换。但我的问题是,它不会自动创建队列和绑定(bind)。我可以看到 Rabbit 中的流量,但我所有的消息都消失了。虽然我需要他们留在某个队列中,除非他们被消费者阅读。

也许我误解了什么,但从我阅读的所有主题来看,Spring Cloud Stream 似乎应该自动创建一个队列和一个绑定(bind)。如果没有,我该如何配置它以便保留我的消息?

我正在使用 Spring Cloud Brixton.SR5 和 Spring Boot 1.4.0.RELEASE。

最佳答案

一旦您启动消费者应用程序,就会创建一个队列。

在 Rabbit MQ 的情况下,我们为每个消费者组都有单独的队列并且我们无法事先知道所有组,如果您希望为预先已知的消费者组自动创建队列,您可以使用 requiredGroups生产者的属性(property)。这将确保消息一直存在,直到该组的消费者启动。

在此处查看详细信息:http://docs.spring.io/spring-cloud-stream/docs/Brooklyn.BUILD-SNAPSHOT/reference/htmlsingle/#_producer_properties

关于Spring Cloud Stream 不创建队列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39551875/

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