org.hibernate.exception.JDBCConnectionException: Error calling Driver#connect
怎么解决.....
怎么解决.....
2016-08-23
老师这里有一个问题个别同学可能会遇到,在建立事物后运行junit时候出错,错误为Session is closed,会话被关闭的,经过查找问题发现在使用getCurrentSession的时候不能保证这个会话就是打开开放的,需要改为openSession();
Session session = this.getSessionFactory().openSession();
session.beginTransaction();
Session session = this.getSessionFactory().openSession();
session.beginTransaction();
2016-08-21