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

does Java 6 support legacy JAXB1 out of the box? According to JAXB guide, I can use JAXB1 with JAXB2 libraries, just add jaxb1-impl.jar to classpath. But it seems that this works only when using JAXB RI as standalone package. It doesn't work for me with Java 6 classes out of the box.

Thanks, Jan

share|improve this question
why do you have to use jaxb1? – Bozho Feb 14 '11 at 14:13
It may depend on your version of Java 6. Java 6 JAXB support changed as of update 10. – justkt Feb 14 '11 at 14:16
I need jabx1 because of legacy classes I cannot change – jan_bar Feb 14 '11 at 14:38
I can update Java 6 to the latest version if need be. What changes are you talking about? – jan_bar Feb 14 '11 at 14:41
Which implementation of JAXB 1.0 are you using: Metro (the RI), TopLink JAXB, XDK JAXB, etc.? – Blaise Doughan Feb 15 '11 at 21:49

1 Answer

Jaxb is backword compataible. You can use generate binding classes using jaxb1 , compile it into a seperate jar.

Deploy the above compiled code in jvm6. There will be no change needed in the client code. Jaxb2 will automatically pickup the legacy binary. --Kiran.Kumar

share|improve this answer

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.