spring boot 拦截器(springboot拦截器顺序)

  本篇文章为你整理了spring boot 拦截器(springboot拦截器顺序)的详细内容,包含有springboot拦截器和过滤器的区别 springboot拦截器顺序 springboot拦截器登录验证 springboot拦截器修改请求参数 spring boot 拦截器,希望能帮助你了解 spring boot 拦截器。

  2.注册拦截器,指定拦截规则

  spring framework 中的拦截器类需要继承与HandlerInterceptor,spring boot也是一致的

  

package com.tons.intercept;

 

  import lombok.extern.slf4j.Slf4j;

  import org.springframework.web.servlet.HandlerInterceptor;

  import javax.servlet.http.HttpServletRequest;

  import javax.servlet.http.HttpServletResponse;

  @Slf4j

  public class RecordIntercept implements HandlerInterceptor {

   request 请求对象

   response 响应对象

   handler 请求处理器,可以强转成HandlerMethod使用(可获取处理方法的相关信息)。

   @Override

   public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {

   // 获取路由

   String remoteAddr = request.getRemoteAddr();

   // 获取访问路径 http:localhost:80/ 后面的url部分

   String url = request.getRequestURI();

   // 打印

   log.debug("{}访问了[{}]",remoteAddr,url);

   // 返回true 放行,false不放行

   return true;

  

 

  注册拦截器,指定拦截规则

  

package com.tons.config;

 

  import com.tons.intercept.PowerIntercept;

  import com.tons.intercept.RecordIntercept;

  import org.springframework.context.annotation.Configuration;

  import org.springframework.web.servlet.config.annotation.InterceptorRegistry;

  import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

  import java.util.Arrays;

  import java.util.List;

   * 配置拦截器

  @Configuration

  public class InterceptConfig implements WebMvcConfigurer {

   private static final List String STATIC_PATH = Arrays.asList("/","/index","/css/**","/js/**","/img/**","/media/**","/vendors/**","/element-ui/**","/temp/**","/public/**","/json/**","/favicon.ico","/error");

   * 配置拦截器

   * @param registry 拦截器

   @Override

   public void addInterceptors(InterceptorRegistry registry) {

   WebMvcConfigurer.super.addInterceptors(registry);

   //addPathPatterns 拦截路径

   //excludePathPatterns 不拦截路径

   // /**代表当前目录下所有资源(包含其内部子资源)

   registry.addInterceptor(new RecordIntercept()).addPathPatterns("/**").excludePathPatterns(STATIC_PATH);

  

 

  以上就是spring boot 拦截器(springboot拦截器顺序)的详细内容,想要了解更多 spring boot 拦截器的内容,请持续关注盛行IT软件开发工作室。

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: