1. 程式人生 > >springboot url忽略大小寫

springboot url忽略大小寫

@override ride log pub adapter xtend adapt configure webconfig

java學習,做下筆記

@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
AntPathMatcher matcher = new AntPathMatcher();
matcher.setCaseSensitive(false);
configurer.setPathMatcher(matcher);
}
}

springboot url忽略大小寫