Revert "Switch default MVC path matching strategy"
This reverts commit ab8e599cfe
.
See gh-24805
This commit is contained in:
parent
ab8e599cfe
commit
e766c8b3a7
|
@ -434,7 +434,7 @@ public class WebMvcProperties {
|
||||||
/**
|
/**
|
||||||
* Choice of strategy for matching request paths against registered mappings.
|
* Choice of strategy for matching request paths against registered mappings.
|
||||||
*/
|
*/
|
||||||
private MatchingStrategy matchingStrategy = MatchingStrategy.PATH_PATTERN_PARSER;
|
private MatchingStrategy matchingStrategy = MatchingStrategy.ANT_PATH_MATCHER;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether to use suffix pattern match (".*") when matching patterns to requests.
|
* Whether to use suffix pattern match (".*") when matching patterns to requests.
|
||||||
|
|
|
@ -849,8 +849,7 @@ class WebMvcAutoConfigurationTests {
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
void useSuffixPatternMatch() {
|
void useSuffixPatternMatch() {
|
||||||
this.contextRunner.withPropertyValues("spring.mvc.pathmatch.matching-strategy=ant-path-matcher",
|
this.contextRunner.withPropertyValues("spring.mvc.pathmatch.use-suffix-pattern:true",
|
||||||
"spring.mvc.pathmatch.use-suffix-pattern:true",
|
|
||||||
"spring.mvc.pathmatch.use-registered-suffix-pattern:true").run((context) -> {
|
"spring.mvc.pathmatch.use-registered-suffix-pattern:true").run((context) -> {
|
||||||
RequestMappingHandlerMapping handlerMapping = context.getBean(RequestMappingHandlerMapping.class);
|
RequestMappingHandlerMapping handlerMapping = context.getBean(RequestMappingHandlerMapping.class);
|
||||||
assertThat(handlerMapping.useSuffixPatternMatch()).isTrue();
|
assertThat(handlerMapping.useSuffixPatternMatch()).isTrue();
|
||||||
|
|
Loading…
Reference in New Issue