首页>代码>SpringBoot上传excel文件解析并打印Excel数据>/form/src/main/java/vip/waitfor/form/configurer/WebAppConfigurer.java
package vip.waitfor.form.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.form.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("/web/index.html");
// 黑名单
List<String> PathPatterns = new ArrayList<>();
PathPatterns.add("/user/**");
PathPatterns.add("/web/**");
// 注册
registry.addInterceptor(new LoginInterceptor()).addPathPatterns(PathPatterns)
.excludePathPatterns(excludePathPatterns);
}
}
最近下载更多
wuyu8995861 LV7
2022年7月26日
shaoxf_nihao LV4
2022年6月8日
Patrick1988 LV4
2022年1月14日
newscc LV8
2021年10月18日
阿远远 LV8
2021年10月11日
zoujialuo LV9
2021年10月8日
cp19791101 LV12
2021年9月4日
zhoayabin LV1
2021年8月31日
最代码官方 LV168
2021年8月21日
最近浏览更多
lironggang LV38
2025年12月25日
微信网友_7453060573122560
2025年4月4日
暂无贡献等级
charleswang LV7
2024年10月21日
微信网友_7134912998903808 LV15
2024年9月2日
HANCW LV9
2024年8月8日
17669706126
2024年6月3日
暂无贡献等级
f22m1a2b2 LV17
2024年5月31日
WBelong LV8
2024年3月29日
微信网友_6411774242443264
2023年11月29日
暂无贡献等级
lcqlcl LV11
2023年10月31日

