spring事务配置,tx表达式报错,求原因和解答
1 回答
已采纳
qq_20151109_0
TA贡献22条经验 获得超11个赞
用注解 配上数据源,在加这个就行了<tx:annotation-driven transaction-manager="txManager" />
不用注解:就这样
<!-- 通知 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 传播行为 -->
<tx:method name="find*" propagation="REQUIRED" />
<tx:method name="do*" propagation="REQUIRED" />
<tx:method name="*" propagation="SUPPORTS" read-only="true" />
</tx:attributes>
</tx:advice>
<!-- 切面 -->
<aop:config>
<aop:advisor advice-ref="txAdvice"
pointcut="execution(* 写上你的包路径.*.*(..))" />
</aop:config>
添加回答
举报
0/150
提交
取消