我有一个json文件,其属性名称包含“_”字符,我想知道它是否可以与jackson很好地解析。
答案 0 :(得分:1)
"_user" is translated to user
设置为PropertyNamingStrategy
时,来自jackson API的{p> PropertyNamingStrategy.LowerCaseWithUnderscoresStrategy
`http://jackson.codehaus.org/1.9.9/javadoc/org/codehaus/jackson/map/PropertyNamingStrategy.LowerCaseWithUnderscoresStrategy.html
如果您在使用PropertyNamingStartegy
时需要帮助,请查看http://www.javacodegeeks.com/2013/04/how-to-use-propertynamingstrategy-in-jackson.html