首页>代码>spring boot+mybatis开发海底捞的排队系统(简易版)>/hdl/src/main/java/vip/waitfor/hdl/configurer/WebAppConfigurer.java
package vip.waitfor.hdl.configurer;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import vip.waitfor.hdl.interceptor.LoginInterceptor;

import java.util.ArrayList;
import java.util.List;

@Configuration
public class WebAppConfigurer implements WebMvcConfigurer {

    @Override
    public void addInterceptors(InterceptorRegistry registry) {

        // 白名单
        List<String> excludePathPatterns = new ArrayList<>();
        excludePathPatterns.add("/user/login");
        excludePathPatterns.add("/web/admin-login.html");
        excludePathPatterns.add("/web/hdl.html");

        // 黑名单
        List<String> PathPatterns = new ArrayList<>();
        PathPatterns.add("/user/**");
        PathPatterns.add("/web/**");

        // 注册
        registry.addInterceptor(new LoginInterceptor()).addPathPatterns(PathPatterns)
                .excludePathPatterns(excludePathPatterns);
    }

}
最近下载更多
TY0165  LV20 6月18日
autonomy  LV1 4月12日
kkkllll  LV2 1月24日
hbj1285984841  LV4 2023年10月19日
iceboard  LV2 2023年6月4日
万紫怡  LV4 2023年5月15日
youzitao  LV11 2023年4月17日
朱朱啊哈  LV16 2023年1月31日
LukeMaster  LV1 2022年11月19日
crosa_Don  LV18 2022年10月7日
最近浏览更多
17507331220 11月19日
暂无贡献等级
grant1123  LV2 6月22日
TY0165  LV20 6月18日
来一杯西瓜冰咩  LV6 5月14日
1941549176  LV4 5月9日
autonomy  LV1 4月12日
WBelong  LV8 3月29日
暂无贡献等级
kkkllll  LV2 1月24日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友