I have to generate a lot of xml snippets and store the into my database for later (re-)use. JaxB works fine, but i some questions came up:
- Should i have one JAXBContext for the whole application or for each response dto one? I would keep the context in a static variable in each root dto object. (initialized once)
- Is there no way to inject an marshaller in JEE6?
I want to keep the boilerplate code as small as possible.
greetings m
PS: XStream worked fine too, but i want to stick to the standards.