24 lines
681 B
Java
24 lines
681 B
Java
|
|
package com.dbnt.faisp.config;
|
||
|
|
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
public class WebMvcConfig implements WebMvcConfigurer {
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public void addInterceptors(InterceptorRegistry registry) {
|
||
|
|
registry.addInterceptor(new FaispInterceptor())
|
||
|
|
.addPathPatterns("/**")
|
||
|
|
.excludePathPatterns(
|
||
|
|
"/css/**",
|
||
|
|
"/img/**",
|
||
|
|
"/js/**",
|
||
|
|
"/vendor/**",
|
||
|
|
"/Crosseditor/**",
|
||
|
|
"/CrossUploader/**"
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|