I am using Hibernate in version 3.6.0 and the AnnotationConfiguration is marked as deprecated.
Here is the the line in my HibernateUtil.java class:
sessionFactory = new AnnotationConfiguration().configure("/hib.cfg.xml").buildSessionFactory();
What’s the replacement for AnnotationConfiguration?
“All functionality has been moved to Configuration”:
http://docs.jboss.org/hibernate/core/3.6/javadocs/org/hibernate/cfg/AnnotationConfiguration.html
And here is Configuration:
http://docs.jboss.org/hibernate/core/3.6/javadocs/org/hibernate/cfg/Configuration.html