杰克逊序列化和从原始到对象的desealization

时间:2016-09-16 16:26:16

标签: json jackson json-deserialization

给出MyInteger类

class MyInteger {
  public int value;
}

我想将所有int []反序列化为MyInteger列表

实施例: 鉴于这样的json:

{
 values: [1,2]
}

我想将int []值反序列化为MyInteger列表,但我希望在包含int(int [])数组的所有jsons中生成

1 个答案:

答案 0 :(得分:0)

xquery version "1.0-ml"; module namespace trans = "http://marklogic.com/rest-api/transform/validate"; declare function trans:transform( $context as map:map, $params as map:map, $content as document-node() ) as document-node() { let $validate := validate strict { $content } return $content }; 中添加以下构造函数:

MyInteger

并使用:

public MyInteger(int v) { value = v; } // may be public, doesn't have to be

你应该被设置。