当你使用 Hibernate session factory的getCurrentSession() 函数时候,你可能
见到过"No CurrentSessionContext configured!"
出现这个问题,是因为你没有正确配置 Hibernate internal session context
management .
你只要在Hibernate.cfg.xml文件中添加下面的配置就可以了:
<property name="current_session_context_class">thread</property>
Thank you and Good Luck