-
Notifications
You must be signed in to change notification settings - Fork 38.4k
Upgrading to Spring Framework 6.x
Rossen Stoyanchev edited this page Dec 14, 2021
·
109 revisions
This page provides guidance on upgrading to Spring Framework 6.0.
Spring MVC and Spring WebFlux no longer detect controllers based solely on a type-level @RequestMapping
annotation. That means interfaced based AOP proxying for web controllers may no longer work. Please,
enable class based proxying for such controllers or otherwise the interface must also have @Controller
.
See 22154.