首页>代码>spring AOP 过滤器 拦截器 执行顺序示例>/filter_interceptor/src/main/java/com/qjc/config/InterceptorConfig.java
package com.qjc.config;

import com.qjc.interceptor.TestInterceptor1;
import com.qjc.interceptor.TestInterceptor2;
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;

/**
 * @Description: 拦截器配置
 * @Author: qjc
 * @Date: 2020/4/20
 */
@Configuration
public class InterceptorConfig implements WebMvcConfigurer {

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        InterceptorRegistration interceptorRegistration1 = registry.addInterceptor(new TestInterceptor1());
        interceptorRegistration1.addPathPatterns("/**");
        interceptorRegistration1.order(1);

        InterceptorRegistration interceptorRegistration2 = registry.addInterceptor(new TestInterceptor2());
        interceptorRegistration2.addPathPatterns("/**");
        interceptorRegistration2.order(2);
    }
}
最近下载更多
iceboard  LV2 2023年5月30日
wuchunfu  LV4 2023年3月9日
落后就要挨打  LV26 2023年1月13日
1234mama  LV19 2022年6月7日
君知否  LV17 2021年11月11日
mylzdy  LV12 2021年10月11日
weixh7  LV25 2021年7月28日
唐僧肉01  LV8 2021年7月7日
kwm2921944  LV10 2021年5月26日
nt893120650  LV4 2021年5月12日
最近浏览更多
漫步的海星  LV4 2023年9月26日
newhaijun  LV15 2023年9月20日
www2222  LV2 2023年8月9日
601601lmy  LV5 2023年7月19日
dapeng0011  LV13 2023年6月19日
iceboard  LV2 2023年5月29日
1049066887  LV12 2023年4月24日
wuchunfu  LV4 2023年3月9日
陈广涛  LV4 2023年2月20日
最代码_码鑫源  LV6 2023年2月3日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友