Close SessionFactory in Hibernate 4.3

后端 未结 3 1534
灰色年华
灰色年华 2020-12-31 22:20

I\'m upgrading my Hibernate to the latest version. With my old HibernateUtil.java I had no problems but when upgrading it, the SessionFactory doesn\'t seem to c

3条回答
  •  悲&欢浪女
    2020-12-31 23:11

    The issue seems to be already solved in Hibernate version 4.3.5 .

    sessionFactory.close();
    

    works in my program.

提交回复
热议问题