add(security): 允许匿名访问字典类型

- 在 SecurityConfig 中添加了允许匿名访问字典类型的配置
- 新增 "/system/dict/data/type/**"路径的访问权限为 permitAll()
IOT
zch 1 month ago
parent f485b0889f
commit 02a2eceb37

@ -137,6 +137,10 @@ public class SecurityConfig
.antMatchers("/board/index2").permitAll()
.antMatchers("/board/index1").permitAll()
.antMatchers("/board/index").permitAll()
.antMatchers("/board/index3").permitAll()
// 允许匿名访问 字典类型
.antMatchers("/system/dict/data/type/**").permitAll()
// 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated();

Loading…
Cancel
Save