在路径拦截中,加入拦截器,以下方式会报错。
InterceptorRegistration registration = registry.addInterceptor(new LoginIntercept());
以下是真确姿势。
@Autowired LoginIntercept loginIntercept; @Override public void addInterceptors(InterceptorRegistry registry) { //登录拦截的管理器 //拦截的对象会进入这个类中进行判断 InterceptorRegistration registration = registry.addInterceptor(loginIntercept); //默认所有路径都被拦截 }