Does the annotation of @XmlRootElement in JAXB have to add Java class in any case?
I want not to add any annotations in Java class.
Please tell me any solutions if any.
|
Does the annotation of @XmlRootElement in JAXB have to add Java class in any case? I want not to add any annotations in Java class. Please tell me any solutions if any. |
|||
|
|
|
You do not need to use the @XmlRootElement annotation. Instead you can wrap your root object in an instance of JAXBElement:
For a more detailed example see: JAXB Implementations such as EclipseLink MOXy (I'm the tech lead) also offer alternate metadata representations such as XML. For an example check out: |
|||||||||
|