美文网首页
SpringBoot问题 - URL大小写不敏感

SpringBoot问题 - URL大小写不敏感

作者: 鱼da王 | 来源:发表于2019-11-06 15:13 被阅读0次

Show code

@Configuration
public class WebInterceptorAdapter implements WebMvcConfigurer {
    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        AntPathMatcher pathMatcher = new AntPathMatcher();
        pathMatcher.setCaseSensitive(false);
        configurer.setPathMatcher(pathMatcher);
    }
}

相关文章

网友评论

      本文标题:SpringBoot问题 - URL大小写不敏感

      本文链接:https://www.haomeiwen.com/subject/qsmubctx.html