Do you know of a JAXB setting to prevent standalone="yes" from being generated in the resulting XML?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
Do you know of a JAXB setting to prevent standalone="yes" from being generated in the resulting XML?
|
|||||||
|
can be used to have no
However i wouldnt consider this best practice. |
|||||||||||||
|
|
in JAXB that is part of JDK1.6
|
|||||
|
|
You can either use
or
to disable the default XML declaration, and then add your custom XML declaration,
by
to the generated xml, thus avoiding the standalone="yes" property. |
|||||||||||||||
|
|
If you make document dependent on However standalone XML can be used anywhere (while non-standalone is problematic for XML parsers that don't load externals). I don't see how this declaration could be a problem, other than for interoperability with software that doesn't support XML, but some broken homegrown XML-like voodoo. |
|||
|
This configuration is dependent on the SUN JRE inner implemention, it does not work on OpenJDK. Is there a cross-platform way to do this? |
|||
|
|
|
You can set the Marshaller.JAXB_FRAGMENT to true and then add the custom xml header yourself to the output stream. In you want to do this in scala,
|
|||
|
|