new出来的拦截器Spring管理不了,所以
@Configuration
public class WebConfig implements WebMvcConfigurer {
	@Bean("dp.sso.interceptor")
	public SSOInterceptor ssoInterceptor(){
		return new SSOInterceptor();
	}
	public void addInterceptors(InterceptorRegistry registry) { 
		registry.addInterceptor(ssoInterceptor())
	}
}