|
|
@@ -29,7 +29,9 @@ public class WebAppConfig extends WebMvcConfigurationSupport{
|
|
|
public void addInterceptors(InterceptorRegistry registry){
|
|
|
registry.addInterceptor(loginInterceptor()).addPathPatterns("/**")
|
|
|
.excludePathPatterns("/EIS/login")
|
|
|
- .excludePathPatterns("/test/*");
|
|
|
+ .excludePathPatterns("/test/*")
|
|
|
+ .excludePathPatterns("/favicon.ico")
|
|
|
+ .excludePathPatterns("/error");
|
|
|
registry.addInterceptor(new DataSourceInterceptor()).addPathPatterns("/*/**");
|
|
|
}
|
|
|
|