liquibase is a perfect alternative to hibernate's hbm2ddl_auto property if you are using xml-mapping. But Im using JPA annotation (hibernate annotations). Is it possible to use liquibase then?

link|improve this question

1  
Did you get this working with the annotations? The Liquibase documentation page referenced below only covers pointing it to an XML file. – HDave Oct 6 '10 at 21:17
Nathan Voxland created a patched release for me – Schildmeijer Oct 7 '10 at 6:12
feedback

1 Answer

up vote 4 down vote accepted

Yes, LiquiBase uses hibernate's metadata classes, which are the same whether you use xml mappings or annotations. You do need a hibernate config file to point liquibase to, but your mappings can be xml or jpa annotations.

link|improve this answer
1  
Could you explain a little bit more detailed, or point me to a url – Schildmeijer Jun 17 '09 at 10:07
1  
The liquibase hibernate documentation is at liquibase.org/manual/hibernate. Is there anything in particular you are wondering? – Nathan Voxland Aug 3 '09 at 5:45
1  
The source should build fine. Send me an email nathan [at] voxland.net and I can help you out – Nathan Voxland Nov 18 '09 at 7:13
1  
The answer is still incomplete. What are the arguments when you don't have a hibernate.cfg.xml file? – Otto Allmendinger Nov 16 '11 at 10:21
@OttoAllmendinger Yes, exactly. In out case we don have hibernate.cfg.xml file. Can we still use LiquiBase? – Piotr Sobczyk Apr 25 at 8:49
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.