Spring Boot 路由地址忽略大小写 2021-08-23 18:41:41 浏览数 (1) 实现WebMvcConfigurer接口的configurePathMatch方法代码语言:javascript复制@Override public void configurePathMatch(PathMatchConfigurer configurer) { val matcher = new AntPathMatcher(); matcher.setCaseSensitive(false); configurer.setPathMatcher(matcher); } mvc web 接口 0 人点赞 上一篇:分享雷军22年前编写的代码