springboot部署后如何忽略url大小写
其他问答
1
IDEA开发过程中 使用这个配置,能够忽略大小写
@Configuration
public class EasyWebConfig implements WebMvcConfigurer {
/**
* 访问路径大小写不敏感开启
* */
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
AntPathMatcher matcher = new AntPathMatcher();
//配置url访问大小写不敏感
matcher.setCaseSensitive(false);
configurer.setPathMatcher(matcher);
}
}
打包成jar后运行jar包 依旧存在url大小写不能访问的问题,请教下打包为jar后如何忽略大小写
发表回复