如何配置 spring 引导以使用 spring-cloud-stream 和 rabbit-binder 将供应商绑定到 rabbitmq 队列?

How to configure spring boot to bind a supplier to a rabbitmq queue with spring-cloud-stream and rabbit-binder?

我想使用非常简单的 spring 引导应用程序将消息发送到 rabbitmq 队列 demo-queue

package com.example.demo;

import java.time.LocalDateTime;
import java.util.function.Supplier;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
    
    @Bean
    public Supplier<String> sampleProducer() {
        return () -> {
            System.out.println("producing message");
            return LocalDateTime.now().toString();
        };
    }
}

我目前有以下application.yml

---
spring:
  rabbitmq:
    addresses: amqp://guest:guest@localhost:5672

当我启动应用程序时,它会记录它已连接到 rabbitmq,并在 sampleProducer 中编写的控制台中打印出消息。因此供应商被启动并查询新消息。但是,我没有在 rabbitmq 中看到正在创建队列并用生成的消息填充队列。

pom.xml是:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.6.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
        <spring-cloud.version>Hoxton.SR9</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-amqp</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-stream</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-stream-binder-rabbit</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-stream-rabbit</artifactId>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

我在 spring 文档和示例中迷路了,因为我在那里找到了一个示例,该示例将 Supplier 创建的消息放入队列中。

我需要做什么才能真正将消息发送到队列?如果可能的话,我只想更改 application.yml 而不是添加其他代码。

RabbitMQ 生产者不发布到队列,他们发布到交换器。

Spring 默认情况下,Cloud Stream 生产者不会将队列绑定到目标交换器。

RabbitMQ 默认丢弃不可路由的消息。

您可以添加

spring.cloud.stream.bindings.sampleProducer-out-0.producer.required-groups=foo

并且生产者将队列绑定到目标交换机。