I need to choose a structure for the XML persistence of some Java classes in our application. My requirements: 1. I start with the java classes, and not from the schema 2. Using annotations to configure 3. The ability to generate schemas.
So far, only JAXB seems to satisfy all my requirements.
XStream does not create a schema. JiXB does not use java annotations.
Can you tell me some structure other than JAXB that satisfies all my requirements?
Thank!
source
share