我在这个项目上使用 Hibernate 和 Spring MVC。
我有这段代码:
...
int count = (Integer) this.getSession().createSQLQuery(sql).list().get(0);
this.getSession().close();
return count;
我应该使用this.getSession.close()
,还是应该使用releaseSession(this.getSession())
??
我很难理解这两种方法之间的区别..
谢谢!