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

marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);

For More information

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念