Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What are the advantages of having Hibernate NamingStrategy inside persistence class ?

In Hibernate 3.6 has four implementations of org.hibernate.cfg.NamingStrategy interface:

org.hibernate.cfg.DefaultComponentSafeNamingStrategy
org.hibernate.cfg.DefaultNamingStrategy
org.hibernate.cfg.EJB3NamingStrategy
org.hibernate.cfg.ImprovedNamingStrategy        

and how its difference between each other?

share|improve this question

1 Answer

I don't think the point of a NamingStrategy is to be an advantage. I remember only two times using it. Once was because of a defined rule of naming conventions from the institution that my company was writing software for.

They had a convention that many to many relationships must have a junction table with the name of the other tables and "_x_". Something like users_x_roles.

And with Informix I had a problem because the DefaultNamingStrategy generated invalid DDL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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