Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. 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)
  2. 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.

share|improve this question

1 Answer

up vote 1 down vote accepted
  • Yes, you need only one JAXBContext
  • You can always inject marshaller. (Best way is to use Spring)

     <bean id="marshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
         <property name="classesToBeBound">
            <list>
                <value>com.package.YourClass</value>
             </list>
        </property>
    </bean>
    

I don't properly understand what you mean be "sticking to standards", but you could give a look at JIBX. It generally provides better performance than JaxB

share|improve this answer
Thanks! That is very good hint! As i see this example i could accomplish the same functionality with (Produces, Inject) Annotations without introducing spring. I meant to use as few third party libraries as possible and use the provided server libs. – mkuff Oct 8 '12 at 12:12
@Anshu - JAXB is a standard JSR-222 (jcp.org/en/jsr/detail?id=222) with multiple implementations (Metro, MOXy, etc). Because it is a standard it is the default binding layer for JAX-WS and JAX-RS and an impl is included in JDK/JRE since Java SE 6. – Blaise Doughan Oct 8 '12 at 13:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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