JAXB忽视XML头

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 the Marshaller to remove the header:

marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);

For More Information

  • http://blog.bdoughan.com/2011/08/jaxb-and-java-io-files-streams-readers.html

你可能感兴趣的:(JAXB忽视XML头)