pointcut-ref="billPerform"你并没有定义一个billPerform来匹配这个属性的配置啊

解决方案 »

  1.   

    <aop:config>
        <aop:advisor
            pointcut="com.xyz.someapp.SystemArchitecture.businessService()"
            advice-ref="tx-advice"/>
    </aop:config><tx:advice id="tx-advice">
        <tx:attributes>
            <tx:method name="*" propagation="REQUIRED"/>
        </tx:attributes>
    </tx:advice>例子,你还需要定义一个建议advice 来匹配上你的 advice-ref这个属性
      

  2.   


    billPerform不是一个切点的名称么,还要怎么匹配