我使用了 RestyGWT 的 JsonEncoderDecoder 接口来编码/解码一些对象。其中有一些类的实例具有未使用 getter/setter 方法公开的属性。我尝试用org.codehaus.jackson.annotate.JsonProperty
. 但它不起作用,导致错误
[错误] [jsonsample] - 字段不能是私有的:com.mycompany.jsonsample.ItemList.items
com.mycompany.jsonsample.ItemList
是具有属性的类,items
它没有 getter/setter 并如上所述注释。
还有可能告诉编码器/解码器跳过一些属性吗?