当前位置: 代码迷 >> J2EE >> spring配置有关问题
  详细解决方案

spring配置有关问题

热度:140   发布时间:2016-04-22 03:09:22.0
spring配置问题
 


<tx:advice id="txAdvice" transaction-manager="transManager">
<tx:attributes>
<tx:method name="add*" PROPAGATION="REQUIRED"/>
<tx:method name="update*" PROPAGATION="REQUIRD"/>
<tx:method name="delete*" PROPAGATION="REQUIRD"/>
<tx:method name="*" read-only="true"/>
</tx:attributes>
</tx:advice>



  <aop:config>
  <aop:pointcut id="allManagerMethod" expression="execution (* com.svse.impl.*.*(..))"/>
  <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod"/>
  </aop:config>


加了以上代码就报错,去了就好了,请问错在哪里?

------解决方案--------------------
这段代码应该没问题。自习检查看看execution后路径还有ref的值
  相关解决方案