alibaba / fastjson

FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
https://github.com/alibaba/fastjson2/wiki/fastjson_1_upgrade_cn
Apache License 2.0
25.75k stars 6.5k forks source link

fastjson升级到1.2.83 com.alibaba.fastjson.JSONException: autoType is not support #4138

Open xiaoliuqq opened 2 years ago

xiaoliuqq commented 2 years ago

ERROR m.z.e.handler.GlobalExceptionHandler - com.alibaba.fastjson.JSONException: autoType is not support. org.springframework.security.core.authority.SimpleGrantedAuthority

wenshao commented 2 years ago

从什么版本升级什么版本?是必须要用到autoType功能的场景么?

xiaoliuqq commented 2 years ago

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: @.***>

xiaoliuqq commented 2 years ago

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: @.***>

wenshao commented 2 years ago

image

你可以加钉钉群直接交流么?

unique-fun commented 2 years ago

1、UserDetails中使用SimpleGrantedAuthority替换掉GrantedAuthority。 UserDetail.java 的diff:

-   Set<GrantedAuthority> authorities;     
+   Set<SimpleGrantedAuthority> authorities;           

2、springsecurity中的自定义反序列化 目前我使用的框架里有这一部分内容,不确定是否起到了作用。

按照1、2处理之后,清空缓存,可以通过认证了。

PS:尝试使用GSON 方案,会提示无构造,实例化异常 ; 按照1、2方式后 gson序列化方案。

期待官方更好的解决方案。

xiaoliuqq commented 2 years ago

您好  我这边处理了   @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: @.***>

xiaoliuqq commented 2 years ago

收到

------------------ 原始邮件 ------------------ 发件人: "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: @.***>