-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: hibernate.cfg.xml - hbm2ddl.auto - eclipse
PostPosted: Mon Apr 02, 2007 7:24 am 
Beginner
Beginner

Joined: Wed Mar 14, 2007 10:19 am
Posts: 24
I am working on a Hibernate application where compile, and deploy on Tomcat is done through eclipse.
In the hibernate.cfg.xml the hbm2ddl.auto property is set to update.

What I would like to ask is the following:

If I change the name of a column in an hbm.xml file shouldn't this change automatically be done in the database also?

Since now I was using a build.xml where I used the hibernate tools to update or create schema. But now I have to use the previous mentioned way with eclipse. But when I change something in a hbm.xml I do not see any change in the database.

Any suggestions???


Top
 Profile  
 
 Post subject:
PostPosted: Sat Apr 07, 2007 7:12 am 
Newbie

Joined: Sun Oct 08, 2006 8:03 am
Posts: 14
The hbm2ddl.auto update works for me.
If I add new fields, the new columns appear next time I start my web server.
If I change a field name, the old column remains, but the new column appears.

I use hibernate annotations (simpler than hbm.xml!) and spring as well.

Are you restarting your application?

John.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Apr 07, 2007 9:45 am 
Newbie

Joined: Sun Apr 09, 2006 4:57 pm
Posts: 10
Location: Milan (Italy)
My personal opinion is:

1)when you developing, and do not have any real data to save, use the create-drop option and reload the test data (using DBUnit or a specific code) before every test;

2)when you are in production do not use any hbm2ddl.auto option, not even the update, as it will not really work as you would like in a production environment (it is stated even in Java Persistence book). New fields and table are added, but old one are not deleted. If you change the dimension of a field the modification is not applied. In other term, it does 90% of the job, but usually it is not enough.

In production you can use the Hibernate Tools to download the current schema in a text file, while you are mantainin the current (in production) schema in another file. There are many products/tools that can determine the "ALTER TABLE" to apply to a specific database having the old and the new schema. Choose the best for you and mantain the schema in a professional way.

Anycase, as John pointed out, any action of the hbm2ddl is executed when the SessionFactory is build, so if you do not restart the application nothing happens. Restart the application and the hbm2ddl action will be executed.

Marco


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.