How can i transition from Castor to JAXB in an existing project?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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: |
|||
|