1. 程式人生 > >spring mvc URL忽略大小寫

spring mvc URL忽略大小寫

ant case color url 小寫 post config rri mvcc

@Configuration
public class SpringWebConfig extends WebMvcConfigurationSupport {

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

}

spring mvc URL忽略大小寫