批注接口 AutoConfigureWebTestClient
@Target({TYPE,METHOD})
@Retention(RUNTIME)
@Documented
@Inherited
@ImportAutoConfiguration
@PropertyMapping("spring.test.webtestclient")
public @interface AutoConfigureWebTestClient
Annotation that can be applied to a test class to enable a
WebTestClient
that
is bound directly to the application. Tests do not rely upon an HTTP server and use
mock requests and responses. At the moment, only WebFlux applications are supported.- 从以下版本开始:
- 2.0.0
- 作者:
- Stephane Nicoll
- 另请参阅:
-
可选元素概要
可选元素修饰符和类型可选元素说明The timeout duration for the client (in any format handled byDuration.parse(CharSequence)
).
-
元素详细资料
-
timeout
String timeoutThe timeout duration for the client (in any format handled byDuration.parse(CharSequence)
).- 返回:
- the web client timeout
- 默认值:
""
-