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; |
Spring Boot 2.6.x documentation states that the default value for property
spring.mvc.pathmatch.matching-strategyisant-path-matcher, but it's actuallypath-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:
spring-boot/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcProperties.java
Line 404 in 756b9b9