Web高级开发——spring与hibernate的整合
在实验过程中,我一开始在applicationContext.xml文件中设置了事务管理平台,但是在此处出现了错误:
<aop:config>
<aop:advisor advice-ref=""txadvice"
pointcut="cn.itcast.service.*.*(..)" />
</aop:config>
提示是:pointcut="cn.itcast.service.*.*(..)"有问题,我怀疑应该改为execution(* cn.itcast.service..*.*(..));
我之前因为错误所以就把这个事务管理器删除了,结果在操作数据库时数据库中无法显示数据,但又确实曾经插入过数据,只是被其自动删除了。
于是我在网上找到方法,将事务自动提交方法写在hibernate.cfg.xml中,就行了。此即为自动提交事务的方法:<property name="hibernate.connection.autocommit">true</property>
页:
[1]