Suzan Cioc
Suzan Cioc

Reputation: 30107

Can Hibernate change structure but keep data?

If I add fields to classes and set

<property name="hbm2ddl.auto">update</property>

will Hibernate add field to table with keeping table's data?

Upvotes: 3

Views: 1199

Answers (1)

Nandkumar Tekale
Nandkumar Tekale

Reputation: 16158

<property name="hbm2ddl.auto">update</property> : This will update your db schema without losing your data if you are going to add new columns. But if you change definition of any existing column, then it may loose data.

Upvotes: 5

Related Questions