org.springframework.web.servlet.config.annotation.PathMatchConfigurer#setPathMatcher ( )源码实例Demo

下面列出了org.springframework.web.servlet.config.annotation.PathMatchConfigurer#setPathMatcher ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: Aooms   文件: AoomsWebMvcConfigurer.java
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
    AntPathMatcher matcher = new AntPathMatcher();
    matcher.setCaseSensitive(false);
    configurer.setPathMatcher(matcher);
}
 
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
    AntPathMatcher matcher = new AntPathMatcher();
    matcher.setCaseSensitive(false);
    configurer.setPathMatcher(matcher);
}
 
源代码3 项目: atsea-sample-shop-app   文件: WebConfiguration.java
@Override
   public void configurePathMatch(PathMatchConfigurer configurer) {
   	AntPathMatcher matcher = new AntPathMatcher();
   	matcher.setCaseSensitive(false);
  		configurer.setPathMatcher(matcher);
}