Spring Boot 2.6.x documentation states that the default value for property spring.mvc.pathmatch.matching-strategy is ant-path-matcher, but it's actually path-pattern-parser.
Documentation:
https://docs.spring.io/spring-boot/docs/2.6.x/reference/html/application-properties.html#application-properties.web.spring.mvc.pathmatch.matching-strategy
Source code:
|
private MatchingStrategy matchingStrategy = MatchingStrategy.PATH_PATTERN_PARSER; |