web-dev-qa-db-ja.com

jacksonを使用してカスタムオブジェクトのHashMapに逆シリアル化する

次のクラスがあります。

import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;

import Java.io.Serializable;
import Java.util.HashMap;

@JsonIgnoreProperties(ignoreUnknown = true)
public class Theme implements Serializable {

    @JsonProperty
    private String themeName;

    @JsonProperty
    private boolean customized;

    @JsonProperty
    private HashMap<String, String> descriptor;

    //...getters and setters for the above properties
}

次のコードを実行すると:

    HashMap<String, Theme> test = new HashMap<String, Theme>();
    Theme t1 = new Theme();
    t1.setCustomized(false);
    t1.setThemeName("theme1");
    test.put("theme1", t1);

    Theme t2 = new Theme();
    t2.setCustomized(true);
    t2.setThemeName("theme2");
    t2.setDescriptor(new HashMap<String, String>());
    t2.getDescriptor().put("foo", "one");
    t2.getDescriptor().put("bar", "two");
    test.put("theme2", t2);
    String json = "";
    ObjectMapper mapper = objectMapperFactory.createObjectMapper();
    try {
        json = mapper.writeValueAsString(test);
    } catch (IOException e) {
        e.printStackTrace(); 
    }

生成されるjson文字列は次のようになります。

{
  "theme2": {
    "themeName": "theme2",
    "customized": true,
    "descriptor": {
      "foo": "one",
       "bar": "two"
    }
  },
  "theme1": {
    "themeName": "theme1",
    "customized": false,
    "descriptor": null
  }
}

私の問題は、上記のjson文字列を取得して、非セライズ化して

HashMap<String, Theme> 

オブジェクト。

私の逆シリアル化コードは次のようになります。

HashMap<String, Themes> themes =
        objectMapperFactory.createObjectMapper().readValue(json, HashMap.class);

正しいキーを使用してHashMapに逆シリアル化しますが、値のテーマオブジェクトは作成しません。 readValue()メソッドで「HashMap.class」の代わりに何を指定するのかわかりません。

任意の助けをいただければ幸いです。

47
wbj

特定のマップタイプを作成し、デシリアライズプロセスに提供する必要があります。

TypeFactory typeFactory = mapper.getTypeFactory();
MapType mapType = typeFactory.constructMapType(HashMap.class, String.class, Theme.class);
HashMap<String, Theme> map = mapper.readValue(json, mapType);
84
Michał Ziober

ユーザー定義型を使用してマップの型キャストを行うTypeReferenceクラスを使用できます。 http://wiki.fasterxml.com/JacksonInFiveMinutes で詳細なドキュメントをご覧ください

ObjectMapper mapper = new ObjectMapper();
Map<String,Theme> result =
  mapper.readValue(src, new TypeReference<Map<String,Theme>>() {});
17
user2824471

マップを拡張するPOJOを作成できます。

これは、オブジェクトのネストされたマップを処理するために重要です。

{
  key1: { nestedKey1: { value: 'You did it!' } }
}

これは、次の方法で逆シリアル化できます。

class Parent extends HashMap<String, Child> {}

class Child extends HashMap<String, MyCoolPojo> {}

class MyCoolPojo { public String value; }

Parent parent = new ObjectMapper().readValue(json, Parent.class);
parent.get("key1").get("nestedKey1").value; // "You did it!"
0
00500005