[[feature-webflux-explicit]] = WebFlux with Explicit Mode include::partial$_attributes.adoc[] You can also use WebFlux with the explicit mode in your generated tests to work with WebFlux. The following example shows how to configure using explicit mode: ==== [source,xml,indent=0,subs="verbatim",role="primary"] .Maven ---- org.springframework.cloud spring-cloud-contract-maven-plugin ${spring-cloud-contract.version} true EXPLICIT ---- [source,groovy,indent=0,subs="verbatim",role="secondary"] .Gradle ---- contracts { testMode = 'EXPLICIT' } ---- ==== The following {samples_url}/producer_webflux/[example] shows how to set up a base class and RestAssured for Web Flux.