SpringBoot中使用Interceptor拦截接口请求

1

  • 创建interceptor类并实现org.springframework.web.servlet.HandlerInterceptor并实现其方法
  • 在类上添加@Component注解
image.png

2

  • 创建配置类并继承org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
  • 在该类上添加 @Configuration 注解
  • 实现WebMvcConfigurerAdapter类的addInterceptors方法
image.png

你可能感兴趣的:(SpringBoot中使用Interceptor拦截接口请求)