package com.fdage.config; import com.fdage.listner.LoggerInterceptor; 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.WebMvcConfigurerAdapter; /** * Created by Hb_zzZ on 2018/12/6. */ @Configuration public class InterceptorConfig extends WebMvcConfigurerAdapter { @Bean public LoggerInterceptor loggerInterceptor(){ return new LoggerInterceptor(); } @Override public void addInterceptors(InterceptorRegistry registry) { //这里可以添加多个拦截器 registry.addInterceptor(loggerInterceptor()).addPathPatterns("/**") .excludePathPatterns("/","","/error","/login","/register","/resetPassword"); super.addInterceptors(registry); } }