vote up 0 vote down star

I don't want to use XML file created by JAXB marshaller, can I customize it, so that i would give a preferrable format to marshal objects?

flag

20% accept rate
you mean that you want the marshaling output to be something else than xml? – LiorH Jun 26 at 7:52
xml with customizations.. – cbz Jun 27 at 8:33

2 Answers

vote up 1 vote down

You can take JAXB's XML output and process it in a way you like, to achieve an alternative output.

XSLT, DOM, or something else...

XML is perfect to be further transformed!

link|flag
+1 In fact you can use JAXBSource to take a JAXB object and run it straight through a javax.xml.transform.Transformer, no need to go via the XML stage. – skaffman Sep 24 at 10:05
vote up 0 vote down

jaxb is related to XML ... if you need to customize the xml then you can use the Jaxb annotations http://java.sun.com/javaee/5/docs/api/javax/xml/bind/annotation/package-summary.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.