springboot1.5.7 增加拦截器

 最近系统需要改进授权方式,采用拦截器来拦截请求,

一些不需要拦截的,通过addInterceptor.excludePathPatterns排除掉,排除路径通过配置项注入ignorePath

需要拦截的正常拦截

下面代码中写了两个拦截器,作用如下

一个接口需要在两个系统中使用,一个系统A会带上token校验,另一个系统B没有token校验,所以采用双拦截器分别拦截

mark一下,这里加入两个拦截器



/**
 * @author ikong
 * @create 2018-06-01 15:22
 */
@ConditionalOnBean(EmployeeValidateInterceptor.class)
@Configuration
public class WebMvcAuthorizationConfig extends WebMvcConfigurerAdapter {

    @Value("${ignore-path}")
    private String ignorePath = "";

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        String pathPattern = "/**";
        String pathError = "/error";
        InterceptorRegistration addInterceptor = registry.addInterceptor(createTokenInterceptorConfig());
        addInterceptor.addPathPatterns("/**");
        addInterceptor.excludePathPatterns(new String[]{"/error"});
        if (!StringUtils.isEmpty(ignorePath)) {
            String[] paths = ignorePath.split(";");
            for (int i = 0; i < paths.length; i++) {
                addInterceptor.excludePathPatterns(new String[]{paths[i]});
            }
        }
        System.out.println("初始化注入过滤路径:" + JSONObject.toJSONString(ignorePath));
        InterceptorRegistration employeeInterceptor =registry.addInterceptor(createEmployeeInterceptorConfig());
        employeeInterceptor.addPathPatterns(pathPattern);
        employeeInterceptor.excludePathPatterns(pathError);
        super.addInterceptors(registry);
    }

    @Bean
    public TokenValidateInterceptor createTokenInterceptorConfig() {
        return new TokenValidateInterceptor();
    }

    @Bean
    public EmployeeValidateInterceptor createEmployeeInterceptorConfig() {
        return new EmployeeValidateInterceptor();
    }

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码者人生

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值