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

How can i transition from Castor to JAXB in an existing project?

share|improve this question

1 Answer

There are a couple of approaches you can take:

Approach #1 - Retain Domain Classes

If you are looking to use the same domain objects used by Castor you will need to annotate them with JAXB annotations. If you are using Castor's mapping file, and continue to use a mapping file you will need to use a JAXB implementation with an equivalent extensions such as EclipseLink MOXy (I'm the tech lead):

Approach #2 - Generate New Classes

If you used Castor's source code generator to generate classes from an XML schema you can simply use JAXB's source code generator to generate new classes from the same XML schema. For an example see:

share|improve this answer
Thanks Blaise for your response. But, currently i m working on a very large Enterprise Project under Misys. The Classes i have to work with are so nuch. And in the Entire Project Castor Marshalling and Unmarshalling has been used. Could you please let me know of a plugin Which can directly Generate the XML and read objects from XMl . And how to remove the Castor Version. Thanks in advance, Blaise. – Aditya Mar 14 '11 at 5:00

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.