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