package com.yeshi.buwan.util.config;
|
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.util.AntPathMatcher;
|
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
|
|
@Configuration
|
public class SpringWebConfig extends WebMvcConfigurationSupport {
|
@Override
|
public void configurePathMatch(PathMatchConfigurer configurer) {
|
AntPathMatcher pathMatcher = new AntPathMatcher();
|
pathMatcher.setCaseSensitive(false);
|
configurer.setPathMatcher(pathMatcher);
|
}
|
}
|