I need an XML root element like this.
<SYSTEM Version 1.0>
</SYSTEM>
How to do it with @XmlRootElement? I tried this
@XmlRootElement(name = "SYSTEM Version 1.0"), but it creates a closing tag like the one below.
</SYSTEM Version 1.0>
Thanks
I need an XML root element like this.
<SYSTEM Version 1.0>
</SYSTEM>
How to do it with @XmlRootElement? I tried this
@XmlRootElement(name = "SYSTEM Version 1.0"), but it creates a closing tag like the one below.
</SYSTEM Version 1.0>
Thanks