Can someone help me to generate XML with repeated tag using JAXB marshalling using EclipseLink MOXy.
@XmlPath("ExecRpt/Pty/@ID") --"ABC"
@XmlPath("ExecRpt/Pty/@ID") --"ABD"
@XmlPath("ExecRpt/Instrmt/@Exch") --"AAA"
I am expecting result:
<ExecRpt> <pty ID="ABC"/> <Instrmt Exch="AAA"/><pty ID="ABD"/> </ExecRpt>
Using below approach i am generating from annotated bean to XML.
JAXBContext.createMarshaller()
Marshaller.marshal()
Thanks a lot in advance
Below is an example of how you could map your use case using EclipseLink JAXB (MOXy)'s
@XmlPath
extension.ExecRpt
You can specify the position of the element that you wish to map to
@XmlPath("Pty[2]/@ID")
.jaxb.properties
To specify MOXy as your JAXB provider you need to have a file called
jaxb.properties
in the same package as your domain model with the following entry (see: http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html).Demo
input.xml/Output
For More Information