且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在带有注释映射的 Spring MVC 中使用不区分大小写的 URL

更新时间:2023-02-15 17:42:15

Spring 4.2 将支持不区分大小写的路径匹配. 可以如下配置:

@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {
    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        AntPathMatcher matcher = new AntPathMatcher();
        matcher.setCaseSensitive(false);
        configurer.setPathMatcher(matcher);
    }
}