@lol1ipop 你说的太绝对了,静态方法中未必只能使用静态方法,如果你传递一个对象的引用到静态方法里(静态方法可以创建其自身的对象),然后通过这个引用,你就可以调用非静态方法和访问肥静态数据成员。
2017-01-14
在执行findStudentByGrade()方法时报错误: Exception in thread "main" org.hibernate.HibernateException: get is not valid without active transaction at 发现是没有开启事务导致的,加上开启事务就好了:Transaction ts = session.beginTransaction(); 不知道老师为什么没有加就可以运行通过,是不是跟我使用的是getCurrentSession获取的连接有关系?
2016-12-21