I have an inbound xml which I am mapping to JAXB objects using the xjc tool (to build the pojos)
I am wondering what the best approach is to map these objects to various tables.
An Object / Xml can map to multiple tables which rules hibernate out i think. As a basic solution I believe i need someway to annotate the fields in the objects maybe (via tags in the xsd? i dont know) to database column names.
Has anyone encountered this before?
Thanks
I guess you need Hyperjaxb3 that provides relational persistence for JAXB objects.
@lexicore is the author about this project.
You can use an extension for xjc
- hyperjaxb
For this purpose, hyperjaxb3
will be preferable.
Here is link to some tutorial Generate JPA Java classes from XSD schema file using Maven
It's unclear what accordance between database schema and XML schema is. When there are too few generalizations and coherence between them then it's worst case, you need to couple XML and database by hands for every JAXB entity.
If there're good enough coherence and understandable rules you can try to write own code generator to create code of entities with JAXB and JPA annotations.
Also, try to look to an engine that supports both JAXB and JPA annotations out-of-box: EclipseLink.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With