feat: 添加新的排除路径模式
- 在 WebMvcConfigure 类中添加了新的排除路径模式 "/api/clothes/clothesType"
- 这个修改允许该路径下的请求不受某些过滤器或拦截器的影响
1 files modified
1 ■■■■ changed files
src/main/java/cc/mrbird/febs/common/configure/WebMvcConfigure.java 1 ●●●● patch | view | raw | blame | history
src/main/java/cc/mrbird/febs/common/configure/WebMvcConfigure.java
@@ -45,5 +45,6 @@
        registration.excludePathPatterns("/api/clothes/social/indexCategory");
        registration.excludePathPatterns("/api/clothes/social/allSocial");
        registration.excludePathPatterns("/api/clothes/social/socialInfo");
        registration.excludePathPatterns("/api/clothes/clothesType");
    }
}