Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG]fastjson1默认支持将前后带有下划线的字段名反序列化到没有下划线的字段,fastjson2不支持 #3303

Open
zhanhcs opened this issue Jan 21, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@zhanhcs
Copy link

zhanhcs commented Jan 21, 2025

问题描述

简要描述您碰到的问题。
String str="{"version":1821824740974657536}";
QuerySolrArtistInfoVO querySolrArtistInfoVO = JSON.parseObject(str, QuerySolrArtistInfoVO.class);
QuerySolrArtistInfoVO querySolrArtistInfoVO2 = com.alibaba.fastjson2.JSON.parseObject(str, QuerySolrArtistInfoVO.class);
querySolrArtistInfoVO.getVersion(); // 1821824740974657536
querySolrArtistInfoVO2.getVersion(); // null

其中 QuerySolrArtistInfoVO
/**
* 数据版本
*/
@field("version_s")
private String version;

环境信息

期待的正确结果

fastjson1默认支持将前后带有下划线的字段名反序列化到没有下划线的字段,fastjson2跟1一样的行为

相关日志输出

请复制并粘贴任何相关的日志输出。

附加信息

如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。

@zhanhcs zhanhcs added the bug Something isn't working label Jan 21, 2025
@CodePlayer
Copy link
Contributor

感觉你的反馈描述要点不够清晰,请最好提供能够直接运行测试的最小代码片段(最好用代码块包裹,便于大家阅读理解)。
此外,请不要混用 Fastjson1 和 Fastjson 2,两者的注解类都是不一样的。
加了 1 的注解,不会对 2 生效;反之亦然。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants