私はジャクソンXMLアノテーションを使用して、XML文書を外部APIからPOJOに変換しています。 XMLの1つの要素が私に少し問題を与えています。要素のほとんどは属性を持っていない、とだけテキスト値など:ジャクソンXMLアノテーション:XML要素から属性を持つ単一文字列値を抽出
<urgency id="UrgCaution">Caution</urgency>
I:
<title>Title Here</title>
私はこのような属性を持っているけれども一つの要素、といくつかの問題を抱えていますテキスト値 "Caution"を取り出して文字列に格納したいだけです。私はもともと私のJavaクラスでは、この方法を試してみました:
public class Item {
@JacksonXmlProperty(localName = "urgency")
private String urgency;
}
しかし、それは、次のエラーが発生:
Caused by: com.fasterxml.jackson.databind.JsonMappingException: Can not construct
instance of Item: no String-argument constructor/factory method to deserialize from
String value ('Security')
at [Source: [email protected]; line: 40, column: 21]
「セキュリティ」で後述する「タグ」と呼ばれるXML属性のテキストですドキュメント。
私は次のように変更を試みましたが、例外は排除されましたが、POJOの緊急性のためにnull値が返されました。
public class Item {
@JacksonXmlProperty(localName = "urgency")
@JacksonXmlText
private String urgency;
}
私はここに明らかなものがありません。この要素のテキストを、Jacksonを使用してPOJOのStringフィールドに変換する最良の方法は何ですか?
私が扱っている完全なクラスとXMLドキュメントは次のとおりです。
XML:今
<rss version="2.0">
<channel>
<title>Title</title>
<description>Description</description>
<copyright>Copyright info</copyright>
<ttl>5</ttl>
<pubDate>Thu, 27 Apr 2017 17:21:40 GMT</pubDate>
<item>
<title>Title of event in U.S.</title>
<description>Description here</description>
<fulldescription>Full description here</fulldescription>
<link>http://www.website.com</link>
<pubDate>Thu, 27 Apr 2017 17:13:48 GMT</pubDate>
<locations>
<location>
<name>New York, NY</name>
<latitude>40.714502</latitude>
<longitude>-74.006998</longitude>
<code>NYC</code>
<city>New York</city>
<state>New York</state>
<country>United States</country>
<region>North America</region>
</location>
</locations>
<source>AP</source>
<urgency id="UrgAttention">Attention</urgency>
<categories>
<category id="CatTransp">Transportation</category>
</categories>
<destinations>
<destination code="NYC" id="US" lat="40.714502" longitude="-74.006998">New York, New York</destination>
</destinations>
<designations />
<related />
<tags>Railway disruptions</tags>
<guid>3d64388fc639475dc9aeaabf81ee87bd</guid>
</item>
</channel>
</rss>
クラス。簡潔さのためゲッターとセッターが省略されています。 Locationクラス、Destinationクラス、Categoryクラスもありますが、必要でない限りそれらは含めません。
ルートクラス:
@JacksonXmlRootElement(localName = "rss")
public class FeedRoot {
@JacksonXmlProperty(localName = "channel")
private FeedChannel channel;
}
チャンネルクラス:
public class FeedChannel {
@JacksonXmlElementWrapper(localName = "item", useWrapping = false)
@JacksonXmlProperty(localName = "item")
private List<Item> items;
}
アイテムクラス(JSONのプロパティはJSONへのマーシャリングの結果のためのものであるが、それらを削除すると、結果は変わりません):
public class Item {
@JacksonXmlProperty(localName = "title")
private String title;
@JacksonXmlProperty(localName = "description")
private String description;
@JacksonXmlProperty(localName = "fulldescription")
@JsonProperty("full_description")
private String fullDescription;
@JacksonXmlProperty(localName = "link")
private String link;
@JacksonXmlProperty(localName = "pubDate")
@JsonProperty("publish_date")
private String pubDate;
@JacksonXmlElementWrapper(localName = "locations")
@JacksonXmlProperty(localName = "location")
private List<Location> locations;
@JacksonXmlProperty(localName = "source")
private String source;
@JacksonXmlProperty(localName = "urgency")
private String urgency;
@JacksonXmlElementWrapper(localName = "categories")
@JacksonXmlProperty(localName = "category")
private List<Category> categories;
@JacksonXmlElementWrapper(localName = "destinations")
@JacksonXmlProperty(localName = "destination")
private List<Destination> destinations;
@JacksonXmlProperty(localName = "related")
private String related;
@JacksonXmlProperty(localName = "tags")
private String tags;
@JacksonXmlProperty(localName = "guid")
private String guid;
//getters and setters below here, no annotations
}
解析しようとするとエラーが発生する(名前空間省略):
"Could not read document: Can not construct instance of
com.namespacestuff.Item: no String-argument constructor/factory
method to deserialize from String value ('Railway disruptions')\n at
[Source: [email protected]; line: 42, column: 32]
(through reference chain: com.namespacestuff.FeedRoot[\"channel\"]-
>com.namespacestuff.FeedChannel[\"item\"]->java.util.ArrayList[5]);
nested exception is
com.fasterxml.jackson.databind.JsonMappingException: Can not
construct instance of com.namespacestuff.Item: no String-argument
constructor/factory method to deserialize from String value ('Railway
disruptions')\n at [Source: [email protected];
line: 42, column: 32] (through reference chain:
com.namespacestuff.FeedRoot[\"channel\"]-
>com.namespacestuff.FeedChannel[\"item\"]->java.util.ArrayList[5])"
私は* @ JacksonXmlText *正しくないと思います。おそらく、POJOのすべてのプロパティを提供する必要があります。 –
残りのxml要素を意味しますか?もしそうなら、私はすでにそれをやっています。 –