Skip to content

wmmxsd/springDemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#spring基础

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

基础概念

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

简单实现

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

bean的生命周期

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

spring各模块使用