Provide MvcRequestMatcher.Builder that correctly configures the servlet path #37917
Labels
status: pending-design-work
Needs design work before any code can be developed
type: enhancement
A general enhancement
Milestone
If there is only one dispatcher servlet in the servlet context, then it would be nice to have a simpler way to construct
MvcRequestMatcher
instances.As it is, an application that is constructing an
MvcRequestMatcher
must do:If they have configured
spring.mvc.servlet.path
, then they additionally need to provide that to the matcher as well like so:These two values, the
HandlerMappingIntrospector
and the servlet path configuration, Spring Boot already knows. Given that, it would be nice if a Boot application could instead do:I think it best to publish this bean in the event that there is only one
DispatcherServlet
servlet mapping.The logic would be something like this (pseudocode follows):
where
ExactlyOneDispatcherServlet
checks the servlet configuration for multiple servlet mappings tied to servlets of typeDispatcherServlet
.In Spring Security 6.2, the need for an
MvcRequestMatcher
when usingauthorizeHttpRequests
is greatly reduced. That said, it will still be needed for the foreseeable future when activating the default servlet or when using thesecurityMatchers
,csrf#ignoringRequestMatchers
, andrequiresSecure
DSLs.The text was updated successfully, but these errors were encountered: