具有显式模式的 WebFlux
您还可以在生成的测试中将 WebFlux 与 explicit 模式一起使用 以使用 WebFlux。以下示例演示如何使用显式模式进行配置:
Maven 系列
<plugin>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-contract-maven-plugin</artifactId>
<version>${spring-cloud-contract.version}</version>
<extensions>true</extensions>
<configuration>
<testMode>EXPLICIT</testMode>
</configuration>
</plugin>
Gradle
contracts {
testMode = 'EXPLICIT'
}
以下示例说明如何为 Web Flux 设置基类和 RestAssured。