Name Of the Error:
Class has two properties of the same name "fieldName"
this problem is related to the following location:
--------------
Solution:
------------------------------
@XmlRootElement(name="yourRootElementName") @XmlAccessorType(XmlAccessType.FIELD)
Hint:
At the time of binding java bean to xml ,jaxb impl always look the getters methods .so if you are
used the above annotation then binding will takes by fields(all fields)
The use of access type FIELD will cause JAXB implementations to create bindings for:
- fields
- annotated properties
No comments:
Post a Comment