自己实现IOC过程

Posted blythe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自己实现IOC过程相关的知识,希望对你有一定的参考价值。

阅读了《架构探险》这本书之后简单梳理一下自己实现IOC的基本流程

首先要自己定义一个注解

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 依赖注入注解
 *
 * @since 1.0.0
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Inject {
}

这个注解标记在类中的哪个属性

以上是关于自己实现IOC过程的主要内容,如果未能解决你的问题,请参考以下文章

白话系列之IOC,三个类实现简单的Ioc

Spring IOC容器

说说你对IOC的理解

Spring入门系列:篇2——SpringIOC

JAVA模拟Spring实现IoC过程(附源码)

VS中添加自定义代码片段——偷懒小技巧