Anand Devaraj
Anand Devaraj

Reputation: 745

Upgrading Hibernate 3 to Hibernate 4.3

I am upgrading my application from Hibernate 3 to Hibernate 4.3. I have used the org.hibernate.util.PropertiesHelper in hibernate 3.

And while upgrading to hibernate 4, I unable to find the place where the org.hibernate.util. PropertiesHelper class moved in Hibernate4.

Can anyone help me on this.

Thanks in advance

Upvotes: 1

Views: 1262

Answers (1)

Steve Ebersole
Steve Ebersole

Reputation: 9443

org.hibernate.internal.util.config.ConfigurationHelper is most likely what you are looking for. Notice its designation as 'internal' though

Upvotes: 4

Related Questions