🐛 fix:修复序列化问题

This commit is contained in:
weihongyang
2022-08-09 11:05:44 +08:00
parent 030abafd1f
commit 78fa6f42b0
2 changed files with 15 additions and 9 deletions

View File

@@ -72,7 +72,8 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
"/swagger-ui/**",
"/webjars/**",
"/websocket/**",
"/captcha").anonymous()
"/captcha",
"druid/**").anonymous()
// .antMatchers("/testCors").hasAuthority("system:dept:list222")
// 除上面外的所有请求全部需要鉴权认证
.anyRequest()