We switched to using MVC's path pattern parser by default in 2.6, however the documentation doesn't reflect this everywhere. For example, this section says:
As of Spring Framework 5.3, Spring MVC supports several implementation strategies for matching request paths to Controller handlers. It was previously only supporting the AntPathMatcher strategy, but it now also offers PathPatternParser. Spring Boot now provides a configuration property to choose and opt in the new strategy:
yaml spring: mvc: pathmatch: matching-strategy: "path-pattern-parser"For more details on why you should consider this new implementation, see the dedicated blog post.