Tagged Questions

6
votes
1answer
2k views

Hibernate using JPA (annotated Entities) and liquibase

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?
3
votes
2answers
358 views

Liquibase: Change a INT autoincrement column to BIGINT using modifyDataType refactoring with H2 database

I have a primary key column which is an INT column which I would like to change to a BIGINT. Our test and production environment uses MySQL, but for unit tests we use the embedded H2 database. I have ...
3
votes
3answers
407 views

Database Diff Tool

As a Java Developper using JPA/Hibernate, I am looking for a will help diff a database that has been generated by Hibernate with a production database. I've already looked at LiquiBase's abilities ...
2
votes
1answer
576 views

is there any liquibase issue with hibernate hbm2ddl create?

i'm having a light problem with liquibase and hibernate.I expect hibernate to create the schema when the hbm2ddl is set to create and then have liquibase polulate the database with an sql script file. ...
1
vote
3answers
506 views

Hibernate Second Level Cache EhCache library mismatch?

I'm using Hibernate 3.5.0, JBoss AS 6 and Liquibase 1.9.5. I wanted to activate EhCache Hibernate second-level caching as follows: The first thing I do, is adding a new dependency to the pom.xml: ...
0
votes
2answers
219 views

How to create Liquibase Change Log file for new tables?

I am using Hibernate 2 + Spring 3 + Liquibase 1.9. I have created my entity classes using Hibernate annotation as normal Now I want to generate the Liquibase change log automatically which should ...
0
votes
1answer
395 views

Liquibase diffChangeLog against a Hibernate mapping definition

This question is related to "Hibernate using JPA (annotated Entities) and liquibase". I was actually wondering what to expect when doing a Liquibase diff against a Hibernate mapping definition. What ...
0
votes
1answer
2k views

Db migrate - Hibernate/JPA - hbm2ddl - diff tools

I use: EJB3 / JPA (Hibernate) MySQL 5 I have to set up a system to help database migrations. Tried to use LiquiBase but it seems not enough mature yet to be used with Hibernate. What I would like ...