@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
/**
* 设置忽略路径大小写
*
* @param configurer
*/
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
AntPathMatcher matcher = new AntPathMatcher();
matcher.setCaseSensitive(false);
configurer.setPathMatcher(matcher);
}
}