Open xiaoliuqq opened 2 years ago
从什么版本升级什么版本?是必须要用到autoType功能的场景么?
1.2.54 升级到 1.2.83
------------------ 原始邮件 ------------------ 发件人: @.>; 发送时间: 2022年5月25日(星期三) 中午12:46 收件人: @.>; 抄送: @.>; @.>; 主题: Re: [alibaba/fastjson] fastjson升级到1.2.83 com.alibaba.fastjson.JSONException: autoType is not support (Issue #4138)
从什么版本升级什么版本?是必须要用到autoType功能的场景么?
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>
import org.springframework.security.core.authority.SimpleGrantedAuthority 引入了 这个
------------------ 原始邮件 ------------------ 发件人: "alibaba/fastjson" @.>; 发送时间: 2022年5月25日(星期三) 中午12:46 @.>; @.**@.>; 主题: Re: [alibaba/fastjson] fastjson升级到1.2.83 com.alibaba.fastjson.JSONException: autoType is not support (Issue #4138)
从什么版本升级什么版本?是必须要用到autoType功能的场景么?
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>
你可以加钉钉群直接交流么?
1、UserDetails中使用SimpleGrantedAuthority
替换掉GrantedAuthority
。
UserDetail.java 的diff:
- Set<GrantedAuthority> authorities;
+ Set<SimpleGrantedAuthority> authorities;
2、springsecurity中的自定义反序列化 目前我使用的框架里有这一部分内容,不确定是否起到了作用。
按照1、2处理之后,清空缓存,可以通过认证了。
PS:尝试使用GSON 方案,会提示无构造,实例化异常 ; 按照1、2方式后 gson序列化方案。
期待官方更好的解决方案。
您好 我这边处理了 @Data @NoArgsConstructor @AllArgsConstructor public class AuthorityDto implements GrantedAuthority {
private String authority; }
------------------ 原始邮件 ------------------ 发件人: "alibaba/fastjson" @.>; 发送时间: 2022年5月25日(星期三) 下午4:53 @.>; @.**@.>; 主题: Re: [alibaba/fastjson] fastjson升级到1.2.83 com.alibaba.fastjson.JSONException: autoType is not support (Issue #4138)
1、UserDetails中使用SimpleGrantedAuthority 替换掉GrantedAuthority。 UserDetail.java 的diff:
2、springsecurity中的自定义反序列化 目前我使用的框架里有这一部分内容,不确定是否起到了作用。
按照1、2处理之后,清空缓存,可以通过认证了。
PS:尝试使用GSON 方案,会提示无构造,实例化异常 ; 按照1、2方式后 gson序列化方案。
期待官方更好的解决方案。
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>
收到
------------------ 原始邮件 ------------------ 发件人: "alibaba/fastjson" @.>; 发送时间: 2022年5月25日(星期三) 下午4:53 @.>; @.**@.>; 主题: Re: [alibaba/fastjson] fastjson升级到1.2.83 com.alibaba.fastjson.JSONException: autoType is not support (Issue #4138)
1、UserDetails中使用SimpleGrantedAuthority 替换掉GrantedAuthority。 UserDetail.java 的diff:
2、springsecurity中的自定义反序列化 目前我使用的框架里有这一部分内容,不确定是否起到了作用。
按照1、2处理之后,清空缓存,可以通过认证了。
PS:尝试使用GSON 方案,会提示无构造,实例化异常 ; 按照1、2方式后 gson序列化方案。
期待官方更好的解决方案。
— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>
ERROR m.z.e.handler.GlobalExceptionHandler - com.alibaba.fastjson.JSONException: autoType is not support. org.springframework.security.core.authority.SimpleGrantedAuthority