摘要:
Bean 的生命周期示意图(存在循环依赖和 AOP) 执行创建 Bean protected Object doCreateBean(String beanName, RootBeanDefinition mbd, @Nullable Object[] args) throws BeanCreati 阅读全文
摘要:
项目地址 https://gitee.com/liao-hang/hand-write-spring.git 模拟 Spring 注解 自动装配 Autowired @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) publ 阅读全文
摘要:
Spring IOC 主要有两种实现方式:XML 和注解。 Spring 3.0 推出了注解注入,成为了现在的主流,也是官方推荐的。 这里分析注解方式。 AnnotationConfigApplicationContext(AppConfig.class) AppConfig package cn. 阅读全文