簡體   English   中英

JAXB解組具有相同名稱和不同屬性的外部和內部標簽

[英]JAXB Unmarshalling with outer and inner tags having same name and different attributes

   <xyz>
      <a attributeA, AttributeB>
        <b> </b>
        <c>
            <a attribute1,attribute2,attribute3/>
        </c>
     </a>
  </xyz>

誰能建議我如何處理“ a”內標。

我發現JAXB批注更容易。

@XMLElement
xyz.A a;

可能在另一個bean類中:

@XMLElement(name = "a")
xyz.c.A suba;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM