次のxml文字列があります。各タグをそのオブジェクトのフィールドにマップするために、それをJavaオブジェクトに変換したいと思います。タグ名とは異なるフィールド名を導入できれば良いのですが。どうすればそれができますか?JAXB を調べていますが、「ns4:response」などの部分やタグ内のタグについてまだ混乱しています。前もって感謝します...
<ns4:response>
<count>1</count>
<limit>1</limit>
<offset>1</offset>
<ns3:payload xsi:type="productsPayload">
<products>
<product>
<avgRating xsi:nil="true"/>
<brand>Candie's</brand>
<description>
<longDescription>
long descriptions
</longDescription>
<shortDescription>
short description
</shortDescription>
</description>
<images>
<image>
<altText>alternate text</altText>
<height>180.0</height>
<url>
url
</url>
<width>180.0</width>
</image>
</images>
<price>
<clearancePrice xsi:nil="true"/>
<regularPrice xsi:nil="true"/>
<salePrice>28.0</salePrice>
</price>
</product>
</products>
</ns3:payload>
</ns4:response>