JAXB忽视XML头

前端之家收集整理的这篇文章主要介绍了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

原文链接:https://www.f2er.com/xml/298961.html

猜你在找的XML相关文章