Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yihonglei/thinking-in-spring

Spring source code reading
https://github.com/yihonglei/thinking-in-spring

aop cglib-proxy ioc jdk-proxy spring springframework

Last synced: 3 months ago
JSON representation

Spring source code reading

Awesome Lists containing this project

README

        

## 项目说明

项目名含有 xml 字样的,均基于 xml 方式实现;

项目名没有 xml 字样的,均基于注解方式实现;

## 基础篇

[Spring IOC自动装配bean](https://blog.csdn.net/yhl_jxy/article/details/78781927)

[Spring IOC使用Setter依赖注入](https://blog.csdn.net/yhl_jxy/article/details/78792414)

[Spring IOC使用构造器依赖注入](https://blog.csdn.net/yhl_jxy/article/details/78793415)

[Spring AOP使用注解实战](https://blog.csdn.net/yhl_jxy/article/details/78815636)

[Spring AOP使用XML实战](https://blog.csdn.net/yhl_jxy/article/details/78823746)

[Spring 配置数据源](https://blog.csdn.net/yhl_jxy/article/details/80931653)

[Spring 事务管理](https://blog.csdn.net/yhl_jxy/article/details/86539400)

## 进阶篇

[JDK动态代理实现原理(jdk8)](https://blog.csdn.net/yhl_jxy/article/details/80586785)

[CGLIB动态代理实现原理](https://blog.csdn.net/yhl_jxy/article/details/80633194)

## 源码篇

[Spring源码--BeanFactory和FactoryBean区别](https://blog.csdn.net/yhl_jxy/article/details/80991201)

[Spring源码--IOC容器实现(1)--IOC容器结构体系](https://blog.csdn.net/yhl_jxy/article/details/80963352)

[Spring源码--IOC容器实现(2)--BeanDefinition的Resource定位](https://blog.csdn.net/yhl_jxy/article/details/81019139)

[Spring源码--IOC容器实现(3)--BeanDefinition的载入和解析](https://blog.csdn.net/yhl_jxy/article/details/81027248)

[Spring源码--IOC容器实现(4)--BeanDefinition的注册](https://blog.csdn.net/yhl_jxy/article/details/81035291)

[Spring源码--IOC容器实现(5)--Bean对象的创建](https://blog.csdn.net/yhl_jxy/article/details/81036216)

[Spring源码--IOC容器实现(6)--Bean依赖注入](https://blog.csdn.net/yhl_jxy/article/details/81038625)

[Spring源码-IOC容器实现-AnnotationConfigApplicationContext(注解方式)初始化](https://jpeony.blog.csdn.net/article/details/107122040)

[Spring源码--AOP实现(1)--创建AopProxy代理对象](https://blog.csdn.net/yhl_jxy/article/details/81045142)

[Spring源码--AOP实现(2)--拦截器调用的实现](https://blog.csdn.net/yhl_jxy/article/details/81065722)