标签:需要 prope 允许 hang struct 配置文件 ret 支持 ota
这个小项目是我读过一点Spring的源码后,模仿Spring的IOC写的一个简易的IOC,当然Spring的在天上,我写的在马里亚纳海沟,哈哈
感兴趣的小伙伴可以去我的github拉取代码看着玩
地址: https://github.com/zhuchangwu/CIOC
项目中有两种方式实现IOC:
模仿Spring原生的IOC机制如下:
singletonObjects
的CurrentHashMapsingletonFactories
类型:CurrentHashMapbeanDefinitionMap
类型:CurrentHashMapSpring底层的自己还封装了BeanDefinition, 当然我没干这件事,直接用的类的描述对象 Class
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface CDao {
String value()default "";
}
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface CService {
String value()default "";
}
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface CComponentScan {
String value()default "";
}
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface CAutowired {
String value()default "";
}
当然他跟Spring原生的@Autowired是没法比的,Spring自动装配类型默认是Autowired_no, 但是被Spring原生标记上的对象会先按照默认的装配类型进行装配,如果没有默认的装配类型,再按照byType,如果容器中存在多个相同类型的对象,就按照byName, 名字再一样就直接报错了
Spring是允许 程序员去改这个默认的装配类型的
然后在我的IOC中就比较逊色了,直接默认按照byType,没有合适的类型再按照byName进行自动装配
这里我就简单的说下, 这件事是一个叫AutowiredAnnotationBeanDefinitonPostprocessor
的后置处理器完成的, Spring在做这件事是时候,前前后后是一个偌大的继承体系在支持,但是归根结底是Spring玩了个漂亮的递归,方法名是getBean(),当然这个递归还有几个辅助容器,这几个容器就是我上面说的几个map ,我的IOC能写成,就得益于这一点
注解版的IOC我是用DOM4j解析XML配置文件实现的, 做了下面的功能
标识性的信息是 property
<bean id="dao1" class="com.changwu.dao.DaoImpl1"></bean>
<bean id="service" class="com.changwu.service.UserServiceImpl4">
<property ref="dao1" name="daoImpl"></property>
</bean>
标识性的信息是 constructor-arg
<bean id="DaoImpl" class="com.changwu.dao.DaoImpl1"></bean>
<bean id="service" class="com.changwu.service.UserServiceImpl3">
<constructor-arg ref ="DaoImpl" name="DaoImpl1"></constructor-arg>
</bean>
</bean>
标识性的信息是 byType
<beans default-autowire="byType">
<beans default-autowire="byName">
感兴趣的小伙伴可以去我的github拉取代码看着玩
地址: https://github.com/zhuchangwu/CIOC
标签:需要 prope 允许 hang struct 配置文件 ret 支持 ota
原文地址:https://www.cnblogs.com/xyy2019/p/11830832.html