SpringCloud 整合方式
2023-12-10 21:53 更新
您可以使用以下四种集成配置之一:
- 阿帕奇骆驼
- Spring Integration
- Spring Cloud Stream
- Spring AMQP
由于我们使用Spring Boot,因此,如果您已将这些库之一添加到类路径中,则会自动设置所有消息传递配置。
请记住将
@AutoConfigureMessageVerifier
放在生成的测试的基类上。否则,Spring Cloud Contract验证程序的消息传递部分将不起作用。
如果要使用Spring Cloud Stream,请记住对org.springframework.cloud:spring-cloud-stream-test-support
添加依赖项,如下所示:
Maven.
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-stream-test-support</artifactId> <scope>test</scope> </dependency>
Gradle.
testCompile "org.springframework.cloud:spring-cloud-stream-test-support"
以上内容是否对您有帮助:
更多建议: