Java拦截器实现代码

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import javax.annotation.Resource;

/**
* 功能:过滤请求路径
* @Date 2021/12/31
* @Version 1.0
*/

@Configuration
public class InterceptorAdapterConfig extends WebMvcConfigurerAdapter {

@Resource
private RepeatSubmitInterceptor repeatSubmitInterceptor;
private Logger logger=LoggerFactory.getLogger(InterceptorAdapterConfig.class);

@Override
public void addInterceptors(InterceptorRegistry registry)

{
logger.info("拦截器开始拦截请求路径");

//注册自己的拦截器
//InterceptorRegistration ir = registry.addInterceptor(repeatSubmitInterceptor);
//配置拦截的路径
//registry.addInterceptor(repeatSubmitInterceptor).addPathPatterns("/**");
//配置不拦截的路径

// registry.addInterceptor(repeatSubmitInterceptor).excludePathPatterns("/helpcenterUserInfo/addUserInfo");

//注册自己的拦截器并设置拦截的请求路径
registry.addInterceptor(repeatSubmitInterceptor).addPathPatterns("/helpcenterUserInfo/addUserInfo");

}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值