此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 spring-cloud-stream 4.1.4spring-doc.cn

Spring Cloud Stream 参考文档

前言

本节更详细地介绍了如何使用 Spring Cloud Stream。 它涵盖创建和运行流应用程序等主题。spring-doc.cn

Spring Cloud Stream 简介

Spring Cloud Stream 是一个用于构建消息驱动微服务应用程序的框架。 Spring Cloud Stream 基于 Spring Boot 构建,用于创建独立的生产级 Spring 应用程序,并使用 Spring 集成提供与消息代理的连接。 它提供了来自多个供应商的中间件的原汁原味的配置,引入了持久发布-订阅语义、消费者组和分区的概念。spring-doc.cn

通过将依赖项添加到应用程序的 Classpath 中,您可以立即获得连接 传递给由提供的 Binder 公开的消息代理(稍后会详细介绍),您可以实现您的函数 requirement,它由 .spring-cloud-streamspring-cloud-streamjava.util.function.Functionspring-doc.cn

下面的清单显示了一个快速示例:spring-doc.cn

@SpringBootApplication
public class SampleApplication {

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

    @Bean
	public Function<String, String> uppercase() {
	    return value -> value.toUpperCase();
	}
}

下面的清单显示了相应的测试:spring-doc.cn

@SpringBootTest(classes =  SampleApplication.class)
@EnableTestBinder
class BootTestStreamApplicationTests {

	@Autowired
	private InputDestination input;

	@Autowired
	private OutputDestination output;

	@Test
	void contextLoads() {
		input.send(new GenericMessage<byte[]>("hello".getBytes()));
		assertThat(output.receive().getPayload()).isEqualTo("HELLO".getBytes());
	}
}

主要概念

Spring Cloud Stream 提供了许多抽象和原语,可简化消息驱动微服务应用程序的编写。 本参考手册的其余部分提供了更多详细信息。spring-doc.cn