如果我使用的是Spring AOP,那么在应用程序上下文生命周期代理中的哪一点被创建?
最佳答案
创建bean实例后,它们将通过一系列BeanPostProcessors运行-根据AOP的建议,代理将由名为AnnotationAwareAspectJAutoProxyCreator的BeanPostProcessor(或其子类)创建.
原文链接:https://www.f2er.com/spring/531842.html如果我使用的是Spring AOP,那么在应用程序上下文生命周期代理中的哪一点被创建?