Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 578 Bytes

README.md

File metadata and controls

26 lines (24 loc) · 578 Bytes

#spring基础

本repository主要含有spring的基础概念(IOC和AOP)、概念的简单实现、bean的生命周期以及spring各模块的使用及源码分析

基础概念

  • IOC +依赖倒置 +控制反转
  • AOP +切面 +切入点

简单实现

  • 代理简单实现 +动态代理简单实现 +cglib简单实现
  • IOC简单实现
  • AOP简单实现

bean的生命周期

  • BeanFactoryPostProcessor
  • InstantiationAwareBeanPostProcessor
  • BeanPostProcessor
  • InitializingBean
  • DiposibleBean
  • init-method
  • destroy-method

spring各模块使用