InterceptorConfig.java
704 Bytes
package com.viontech.config;
import com.viontech.interceptor.Gb1400AuthInterceptor;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.InterceptorRegistration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
* @author vion
**/
@Component
public class InterceptorConfig implements WebMvcConfigurer {
@Override
public void addInterceptors(InterceptorRegistry registry) {
InterceptorRegistration registration = registry.addInterceptor(new Gb1400AuthInterceptor());
registration.addPathPatterns("/VIID/**");
}
}