0
<aop:config>
    <aop:aspect id="myAspect" ref="aBean">
    <aop:pointcut id="businessService"
      expression="execution(* com.xyz.myapp.service.*.*(..))"/>
    <aop:advice............>

</aop:aspect>

当我使用上面的配置时,它将使用aspectj。我怎样才能只使用 Spring AOP?

4

1 回答 1

1

您将在代码示例中使用 spring-aop,而不是 aspectj

于 2013-08-21T07:46:59.293 回答