为什么有的配置xml中没有使用ProxyFactoryBean
为什么配置xml中没有使用ProxyFactoryBean,也能使用AOP,这种配置是如何工作的?比如:
<aop:config> <aop:pointcut id="loggerCutpoint" expression= "execution(* com.how2java.service.ProductService.*(..)) "/> <aop:aspect id="logAspect" ref="loggerAspect"> <aop:after pointcut-ref="loggerCutpoint" method="log"/> </aop:aspect> </aop:config>