Remove Servlet 3.0 Support in AbstractRequestMatcherRegistry #6264
Labels
in: web
An issue in web modules (web, webmvc)
status: first-timers-only
An issue that can only be worked on by brand new contributors
type: enhancement
A general enhancement
Milestone
Related to #6220
AbstractRequestMatcherRegistry
checks first to make sure that the classjavax.servlet.ServletRegistration
is present.Since Spring Framework 5.x increases it's Servlet Spec baseline to 3.1, this check is no longer necessary, and the class can assume its availability.
The task here, then, is to remove the check. Since
isServlet30
is effectively always true now, the class should now always postProcess theObjectPostProcessor
instead of conditionally.The text was updated successfully, but these errors were encountered: