我有这种JSON需要使用JsInterop转换为POJO:
"ACL": {
"*": {
"read": true
},
"asdf123asdf": {
"read": true,
"write": true
}
}
asdf123asdf
可以是任何属性名称。这是我的一部分(部分)
@JsType(isNative = true, namespace= JsPackage.GLOBAL, name="Object")
public class ACL {
@JsProperty(name="*")
String asterisk;
}
是否有解决动态属性名称的工作?