<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?
答案 0 :(得分:1)
您将使用spring-aop代码示例,而不是aspectj