在完成SSH整合之后,测试查询成功,就以为配置好了。昨天在完成用户功能时,发现DAO中getHibernateTemplate()的update()、save()、delete()方法均无效,执行无异常,能够输出SQL语句,但是数据
在完成SSH整合之后,测试查询成功,就以为配置好了。昨天在完成用户功能时,发现DAO中getHibernateTemplate()的update()、save()、delete()方法均无效,执行无异常,能够输出SQL语句,但是数据库数据为改变。经过分析发现事务最终没能commit。经过在网上查找认为应该是Spring中事务管理器没有配置好,查看applicationContext.xml,发现已经配置过了,而且没有错误(这是从上一个项目拷贝过来的):
1 <!-- spring 事物管理器 -->
2 <bean id="transactionManager"
3 class="org.springframework.orm.hibernate3.HibernateTransactionManager">
4 <property name="sessionFactory">
5 <ref bean="sessionFactory" />
6 </property>
7 </bean>
8
9 <tx:advice id="txAdvice" transaction-manager="transactionManager">
10 <tx:attributes>
11 <tx:method name="*" propagation="REQUIRED" />
12 </tx:attributes>
13 </tx:advice>
14
15 <aop:config>
16 <aop:pointcut id="interceptorPointCuts"
17 expression="execution(* com.sxpt.daoImpl.*.*(..))" />
18 <aop:advisor advice-ref="txAdvice"
19 pointcut-ref="interceptorPointCuts" />
20 </aop:config>
发现<aop:pointcut id="interceptorPointCuts" expression="execution(* com.sxpt.daoImpl.*.*(..))" />包名写错了,这个项目由于比较小,懒省事就没有写接口,直接使用的实体类,于是将包修改为com.sxpt.dao.*.*(..),然后满怀期望的运行了测试方法。然后令人蛋疼事情出现了:这次直接报错:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'UserService': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'TuserDAO' must be of type [com.sxpt.dao.TuserDAO], but was actually of type [$Proxy16]
检查了半天,一直找不到问题所在。就在要抓狂的时候想到对比下两个项目的不同,结果发现最大的不同就是这次没有写接口。到网上搜索之后才豁然大悟,Spring默认使用的是JDK动态代理,是基于接口的;而想使用类代理,就需要使用CGLib动态代理技术,这里需要作如下配置:
1 <aop:config proxy-target-class="true" >
2 <aop:pointcut id="interceptorPointCuts"
3 expression="execution(* com.sxpt.dao.*.*(..))" />
4 <aop:advisor advice-ref="txAdvice"
5 pointcut-ref="interceptorPointCuts" />
6 </aop:config>
然后运行,终于OK了。
参考博文:
http://www.blogjava.net/robbie/archive/2009/04/05/264003.html