package com.huaheng.framework.token; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * api拦截器 * @author Enzo Cotter * @date 2020/6/11 */ @Configuration public class WebAppConfigurer implements WebMvcConfigurer { @Bean ApiInterceptor apiInterceptor(){return new ApiInterceptor();} @Override public void addInterceptors(InterceptorRegistry interceptorRegistry) { // interceptorRegistry.addInterceptor(apiInterceptor()) // //token 拦截地址 // .addPathPatterns("/api/**") // // // //token排除拦截地址 // .excludePathPatterns("/api/getToken") // .excludePathPatterns("/api/getTokenForMobile"); } }