发布网友 发布时间:2022-04-22 20:30
共5个回答
热心网友 时间:2023-10-27 22:23
如果当前没有session的话,肯定就获取不到的,并且这个getSession只能是获取存在的session,不能创建。
所以可以通过openSession或getCurrentSession方法来进行session获取。
1. 前者打开一个新的,后者当前有session的话,则是使用当前的session,没有的话则创建一个新的;
2. 如果使用前者获得一个session的话,需要手动关闭session,使用后者,当事务提交,session会自动关闭,如果再关闭session则会报如下异常:Session has already closed;
热心网友 时间:2023-10-27 22:24
调用getCurrentSession()试试吧
热心网友 时间:2023-10-27 22:24
Session session = sessionFactory.openSession();
热心网友 时间:2023-10-27 22:25
你数据库连接正确了没有
热心网友 时间:2023-10-27 22:25
853566855