package com.zy.asrs.openapi.config; 
 | 
  
 | 
import org.springframework.beans.factory.annotation.Autowired; 
 | 
import org.springframework.context.annotation.Configuration; 
 | 
import org.springframework.web.servlet.config.annotation.InterceptorRegistry; 
 | 
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; 
 | 
  
 | 
/** 
 | 
 * Created by vincent on 2019-06-13 
 | 
 */ 
 | 
@Configuration 
 | 
public class WebConfig implements WebMvcConfigurer { 
 | 
  
 | 
    @Autowired 
 | 
    private AdminInterceptor adminInterceptor; 
 | 
  
 | 
    @Override 
 | 
    public void addInterceptors(InterceptorRegistry registry) { 
 | 
        registry.addInterceptor(adminInterceptor) 
 | 
                .addPathPatterns("/**") 
 | 
                ; 
 | 
    } 
 | 
  
 | 
} 
 |