Re: [问题] 关于Spring trailing slash问题

楼主: tony21177   2017-11-22 23:02:51
在5.0.1.Release版的Spring Framework Documentation
提到要关掉traling slash的设定可以在configure override
public void configurePathMatch(PathMatchConfigurer configurer)
如下
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
configurer
.setUseSuffixPatternMatch(false)
.setUseTrailingSlashMatch(false)
}
我试过后是可以成功关掉default设定
只是不知道为什么使用RequestMappingHandlerMapping Bean去设定的方式会没有效果?
有办法知道Spring是否真的有拿我create的bean去mapping Handler吗?
可参考
1.4.2. Request Mapping的Pattern comparison
https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-ann-requestmapping
1.11.12. Path Matching
https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-config-path-matching

Links booklink

Contact Us: admin [ a t ] ucptt.com