hibernate 4 执行存储过程
hibernate4中删除了之前的一些方法,其中包括getssion方法。
在hibernate4中获取session的方法换成了getCurrentSession方法,通过调用SessionFactory中的getCurrentSession方可获取到session对象。
删除的connection方法也换成了另外一种形式获取:dowork,dowork需要实现work类,重写其execute方法,execute方法提供了connection对象,在其中实现业务即可。其中,在spring框架中,sessionFactory可以通过自动注入的方式拿到该对象。