WebMvcConfig.java 593 B

123456789101112131415161718192021
  1. package com.yihu.hos.config;
  2. import com.yihu.hos.interceptor.WebMvcInterceptor;
  3. import org.springframework.stereotype.Component;
  4. import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
  5. import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
  6. /**
  7. * web 请求拦截
  8. * @author HZY
  9. * @vsrsion 1.0
  10. * Created at 2016/12/26.
  11. */
  12. @Component
  13. public class WebMvcConfig extends WebMvcConfigurerAdapter {
  14. @Override
  15. public void addInterceptors(InterceptorRegistry registry) {
  16. registry.addInterceptor(new WebMvcInterceptor());
  17. }
  18. }