入力 JSON 文字列があり、JAXB アノテーション付きオブジェクトにアンマーシャリングする必要があります。私はこれを行うためにjettisonを使用しています。JSON 文字列は次のようになります。
{
objectA :
{
"propertyOne" : "some val",
"propertyTwo" : "some other val",
objectB :
{
"propertyA" : "some val",
"propertyB" : "true"
}
}
}
ObjectA コードは次のようになります。
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "objectA")
public class ObjectA {
@XmlElement(required = true)
protected String propertyOne;
@XmlElement(required = true)
protected String propertyTwo;
@XmlElement(required = true)
protected ObjectB objectB;
}
ObjectB クラスのコードは次のようになります。
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "objectB")
public class ObjectB {
@XmlElement(required = true)
protected String propertyA;
@XmlElement(required = true)
protected boolean propertyB;
}
アンマーシャリングに使用されるコード:
JAXBContext jc = JAXBContext.newInstance(OnjectA.class);
JSONObject obj = new JSONObject(theJsonString);
Configuration config = new Configuration();
MappedNamespaceConvention con = new MappedNamespaceConvention(config);
XMLStreamReader xmlStreamReader = new MappedXMLStreamReader(obj,con);
Unmarshaller unmarshaller = jc.createUnmarshaller();
ObjectA obj = (ObjectA) unmarshaller.unmarshal(xmlStreamReader);
例外や警告はスローされません。ObjectB はインスタンス化されていますが、そのプロパティの値が設定されていません。つまり、propertyA は null であり、propertyB はデフォルト値の false を取得しています。なぜこれが機能しないのかを理解するのに苦労しています。誰か助けてくれませんか?