Tagged Questions

1
vote
1answer
10 views

hbm2ddl on a column based on GenericEnumUserType

The following JPA column definition generates an "integer" data type by default on all databases (e.g. h2, mysql, postgres) @Column(name = "type", nullable = false) @Type(type = …
9
votes
7answers
3k views

Hibernate: hbm2ddl.auto=update in production?

Is it okay to run Hibernate applications configured with hbm2ddl.auto=update to update the database schema in a production environment?
6
votes
6answers
6k views

Hibernate question hbm2ddl.auto possible values and what they do

I really want to know more about the update, export and the values that could be given to hbm2ddl.auto. I need to know when to use the update and when not? And what is the alternative? These are …
0
votes
1answer
356 views

Db migrate - Hibernate/JPA - hbm2ddl - diff tools…

Hello 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 …
1
vote
1answer
456 views

NHibernate SchemaExport and Configure() catch-22

I want to use DDD in a new project and model my classes first, then generate the database schema based on the class library. My plan is to do this with the NHibernate hbm2ddl tool SchemaExport. The …
1
vote
1answer
1k views

Using hibernate hbm2ddl.auto=update : How can I alter column not to require value anymore?

I had a property that used to be not-null="true". Values aren't necessary for that field anymore so I changed it to not-null="false" but the table does not get updated in the database. Adding new …
2
votes
3answers
502 views

How to creata database Schema using Hibernate

After reading Hibernate: hbm2ddl.auto=update in production? some questions arose. First of all, the reason for I'm using Hibernate is to be database vendor independent (no need to write 10 versions …
1
vote
0answers
358 views

How to find a JNDI resource inside the hibernatetool Ant task

I want to generate my database schema with Ant. I am using hbm2ddl task. I am using Hibernate with JNDI. My hibernate.cfg.xml looks like: <!DOCTYPE hibernate-configuration PUBLIC …
1
vote
0answers
215 views

Hibernate Validator: EmbeddedId constraint ignored by hbm2ddl

Hi all, Fairly specific question here, but it's been bugging me for a day now: I'm using Hibernate Core, Annotations & Validator on PostgreSQL 8.3. I have the following classes setup: @Entity …