fastjson的key是根据javabean里面的getter和setter方法来的,不是根据属性名的,所以会出现这个问题,你在属性的get和set方法上面写上标注,说明转成什么就行了比如 @JSONField(name="SOMETHING")
http://code.alibabatech.com/wiki/display/FastJSON/Inside+Fastjson
原文链接:https://www.f2er.com/json/290423.html
fastjson的key是根据javabean里面的getter和setter方法来的,不是根据属性名的,所以会出现这个问题,你在属性的get和set方法上面写上标注,说明转成什么就行了比如 @JSONField(name="SOMETHING")
http://code.alibabatech.com/wiki/display/FastJSON/Inside+Fastjson
原文链接:https://www.f2er.com/json/290423.html