Caused by: com.alibaba.fastjson2.JSONException: autoType is not support. org.springframework.security.core.authority.SimpleGrantedAuthority
时间: 2023-07-03 20:17:36 浏览: 194
springsecurity源码(鉴权有缺陷)
这个错误是由 fastjson 序列化时出现的,它在序列化时尝试使用自动类型识别,但是这种行为是不安全的。在 Spring Security 中,SimpleGrantedAuthority 类被用来表示用户的权限,它被序列化时也会触发 fastjson 的自动类型识别,从而导致这个错误。为了解决这个问题,你可以使用 fastjson 的 SerializeConfig 来禁用自动类型识别,或者使用其他的 JSON 序列化库来替代 fastjson。
阅读全文