We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
fastjson2中ParserConfig取消了propertyNamingStrategy属性,要实现如下转换,请问要怎么处理呢? ParserConfig config = ParserConfig.getGlobalInstance(); config.propertyNamingStrategy = PropertyNamingStrategy.CamelCase; jsonObj.toJavaObject(clazz, config, 0);
The text was updated successfully, but these errors were encountered:
@xhygege JSONReader.Feature.SupportSmartMatch 是否能满足您的场景 see https://github.com/alibaba/fastjson2/blob/main/docs/features_cn.md
JSONReader.Feature.SupportSmartMatch
Sorry, something went wrong.
add testcase for issue #505
5b7fbbc
https://github.com/alibaba/fastjson2/releases/tag/2.0.8 问题已经修复,请用新版本
谢谢解答,问题已经处理
No branches or pull requests
fastjson2中ParserConfig取消了propertyNamingStrategy属性,要实现如下转换,请问要怎么处理呢?
ParserConfig config = ParserConfig.getGlobalInstance();
config.propertyNamingStrategy = PropertyNamingStrategy.CamelCase;
jsonObj.toJavaObject(clazz, config, 0);
The text was updated successfully, but these errors were encountered: