如何实现一个简单的IoC容器
基本介绍
IoC容器是依赖注入的框架,用来映射依赖,管理对象创建和生存周期(DI框架)。通过学习IoC可以简单实现一个IoC容器,同时加深对IoC的理解。
Let’s Code a IoC Container
How to define a bean ?
How to store data collection ?
How to load component and bean ?
How to define a annotation ?
How to handle the annotation ?
How to create an Object ?
How to invoke a Method ?
How to initialize the container ?
之前自己写了一个小的IoC Demo: IoC Demo