SpringBoot拦截器配置

本文详细介绍如何在SpringBoot中自定义拦截器,包括创建拦截器类和配置类,通过实现HandlerInterceptor接口并使用WebMvcConfigurer接口进行注册,实现对请求的预处理、后处理及完成处理。
摘要由CSDN通过智能技术生成

SpringBoot拦截器配置

SpringBoot可以通过实现WebMvcConfigurer并添加@Configuration注解来实现自定义部分SpringMVC配置。

1. 定义一个拦截器

@Slf4j // lombok
public class DemoInterceptor implements HandlerInterceptor {

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        log.info("preHandle method running...");
        return true;
    }

    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
        log.info("postHandle method running...");
    }

    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
        log.info("afterCompletion method running...");
    }
}

2. 定义配置类,注册拦截器

@Configuration
public class InterceptorConfig implements WebMvcConfigurer {

    /**
     * 通过重写接口中的addInterceptors方法,添加自定义拦截器,并通过addPathPatterns方法指定拦截路径
     * @param registry
     */
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new DemoInterceptor()).addPathPatterns("/**");
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值