From 32b87104892bc5d551947af125104b350d00a80b Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Tue, 14 Dec 2021 07:31:18 +0000 Subject: [PATCH] Typo See gh-22154 --- src/docs/asciidoc/web/webflux.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webflux.adoc b/src/docs/asciidoc/web/webflux.adoc index 3c65f73591..cc4c257679 100644 --- a/src/docs/asciidoc/web/webflux.adoc +++ b/src/docs/asciidoc/web/webflux.adoc @@ -1363,7 +1363,7 @@ explicitly configure class-based proxying. For example, with `@EnableTransaction you can change to `@EnableTransactionManagement(proxyTargetClass = true)`, and with `` you can change to ``. -NOTE: Keep in mind that as of 6.0, with interface proxying, Spring MVC no longer detects +NOTE: Keep in mind that as of 6.0, with interface proxying, Spring WebFlux no longer detects controllers based solely on a type-level `@RequestMapping` annotation on the interface. Please, enable class based proxying, or otherwise the interface must also have an `@Controller` annotation.