Right now I am getting this as an XML output from my JAXB Marshaller
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><create></create>
But I want my root element as:
<create xmlns="http://ws.abc.com" xmlns:doc="http://ws.abc.com">
Do I need to modify this using parsers,Or is there any annotation available.
A:
You can set the following property on theMarshallerto remove the header:
marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
For More Information
原文链接:https://www.f2er.com/xml/298961.html