如何在Spring AOP中使用AOP功能而不使用aspectj?

时间:2013-08-21 02:14:05

标签: spring spring-aop

<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?

1 个答案:

答案 0 :(得分:1)

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