We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
public static void main(String[] args) { String aaa = "{\"file\":[{\"url\":\"http\"}]}"; Bbb bbb = JSON.parseObject(aaa, Bbb.class); System.out.println(bbb); } @Data static class Bbb { String file; }
2.0.53 Test.Bbb(file=[{"url":"http"}]) 2.0.54 Test.Bbb(file=[{"url":"http"}]) 2.0.55 Test.Bbb(file={"url":"http"}) 2.0.56 Test.Bbb(file={"url":"http"})
是修复了 2.0.54 之前版本存在的 bug,还是 2.0.55 之后版本产生的 bug。
The text was updated successfully, but these errors were encountered:
bug fix for readStringNotMatch, for issue #3438
2447f30
这个行为的改动不对,我已经恢复2.0.54之前的行为。
https://oss.sonatype.org/content/repositories/snapshots/com/alibaba/fastjson2/fastjson2/2.0.57-SNAPSHOT/ 请帮忙用2.0.57-SNAPSHOT验证问题是否修复么? 2.0.57版本预计在4月6日前发布
Sorry, something went wrong.
https://github.com/alibaba/fastjson2/releases/tag/2.0.57 问题已修复,请用新版本
No branches or pull requests
问题描述
2.0.53 Test.Bbb(file=[{"url":"http"}])
2.0.54 Test.Bbb(file=[{"url":"http"}])
2.0.55 Test.Bbb(file={"url":"http"})
2.0.56 Test.Bbb(file={"url":"http"})
环境信息
期待的正确结果
是修复了 2.0.54 之前版本存在的 bug,还是 2.0.55 之后版本产生的 bug。
The text was updated successfully, but these errors were encountered: