SpringAop流程分析
在分析流程之前,我们先简单的实现一下AOP。@Component@ComponentScan("com.jxau")public class EnableComponentScan {}定义一个扫描包。然后创建一个类开启AOP的扫描注解@Component@EnableAspectJAutoProxy(exposeProxy = true)public class EnableAop {}定义一个切面。@Component@Aspectpublic class AspectJ





