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

Is there any way or any utility to generate hibernate mapping files or directly the database tables from POJOs. I cannot manually insert hibernate annotations since these POJOs are generated dynamically in my application. Please suggest a solution.

share|improve this question

3 Answers

Instead of using annotations you could also use 'old fashioned' .hbm.xml mapping files. This is the classic way of defining a mapping with Hibernate which uses an external xml file to describe the mapping. You could generate the mappings at the same time when you generate your POJOs. Or if the POJO generation is done by external code you could add this yourself.

Once you have a mapping you can use the standard Hibernate facilities to create/upgrade the database schema...

share|improve this answer
Actually I am generating POjos from XML schema using jibx. It generates POJOs with a binding.xml while defines the relationship between POJOs and xml schema. So is there a way to generate POJOs and mappings from xml schema at the same time ?/ Thanks for ur suggestion. – Deep Jun 4 '10 at 8:52
I don't have any experience with jibx, but after a quick look at their webpage I did not see a way to do this. It seems like you're out of luck. Maybe you can create your own version of jibx that adds annotations, or allows you also generate a mapping xml file for each class created. – Fried Hoeben Jun 5 '10 at 12:00

Alternatively you could change your code generation in your application to include the javax.persistence annotations.

share|improve this answer
Thanks for the reply. I am generating these POJOs from XML schema using jibx. How can I make it to include javax.persistence notations in POJOs. Please give a suggestion. – Deep Jun 4 '10 at 8:50
@deep, from the jixb documentation I couldn't find a simple way to do it. – Timo Westkämper Jun 4 '10 at 10:14
Is other any other way to convert XML schema to POJOs and also generate the corresponding database tables ?? – Deep Jun 4 '10 at 13:24
You could for example edit the generated Java files after code generation. I mean make them static and not generated anymore. – Timo Westkämper Jun 4 '10 at 13:57
I cannot do this manually since every time there will be different java classes generated from different xml schemas. – Deep Jun 7 '10 at 7:05

What I do is this: 1) use a scaffolding application like Grails (ay would do Rails, Sails, etc).
2) Then reverse Engineer them into pojos via Eclipse

It works everytime and using Grails is fast and VERY easy to use.

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.