在 Boot 中,我希望将所有控制器的URL设置为不区分大小写。
我试过这个,但它不工作
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
AntPathMatcher matcher = new AntPathMatcher();
matcher.setCaseSensitive(false);
configurer.setPathMatcher(matcher);
}
}
我们可以通过www.example.com文件配置它吗application.properties?
2条答案
按热度按时间iyzzxitl1#
在@Xiidref解决方案之后,您可以添加以下内容。
(If您使用的是Spring启动,只需将其添加到您的属性中,它就会工作)
在
application.properties
文件中。gfttwv5a2#
根据文档AntPathMatcher文档,
setCaseSensitive
的布尔值应为false
,以获得不区分大小写的行为。那就换掉
签署人