I tried to test whether the hibernate configuration is working properly. I tried but I got an error:
INFO: HHH000206: hibernate.properties not found
<
Your problem is creation session Factory for your application it happening in HibernateUtilities
class , the reason may be due to , you cannot create a sessionfactory by sessionRegistry
create it by hibernate Configuration class, because you registered your configuration in hibernate.cfg.xml
Just Replace the following code in HibernateUtilities class
`sessionFactory = configuration.buildSessionFactory(serviceRegistry);`
to
`sessionFactory = configuration.buildSessionFactory();`