上篇中通过反射进行对象注入讲到了基本的对象注入,本篇在上章节的基础上进行拓展 实现基本的AutoWried,实际上Spring中的逻辑与此相似,只是多了更多的逻辑判断,当你明白了AutoWried注解的实现逻辑,那么其他类似@controller,@value的注解实现方法类似
话不多说直接见源码,首先要定义一个注解类 代码中有详细解释
欢迎访问我的个人博客preferBlog
package com.project.interFace;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 注解类
* @author preferY
* 有四个对应的属性
*/
//注解运行方式 运行时
@Retention(RetentionPolicy.RUNTIME)
//当前属性作用在什么身上
@Target(ElementType.FIELD)
public @interface AutoWried {
}
测试实现类 代码中使用的controller和service与上一篇基本相同,只不过是,在controller中的属性上加了对应的注解@Autowried
本篇使用了lambda表达式 上一篇中通过set方法进行对象的注入,而且同样需要new一个service的对象 ,本篇直接通过获取属性的类型,使用newInstance()方法获得对象,再使用set方法存入。
package com.project.test;
import java.util.stream.Stream;
import com.project.controller.ReportController;
import com.project.interFace.AutoWried;
public class MyTest2 {
public static void main(String[] args) {
ReportController reportController = new ReportController();
Class<? extends ReportController> class1 = reportController.getClass();
Stream.of(class1.getDeclaredFields()).forEach(item -> {
//获取注解对应的属性
AutoWried annotation = item.getAnnotation(AutoWried.class);
if (annotation != null) {
item.setAccessible(true);
//获取属性的类型
Class<?> type = item.getType();
try {
//获取类型以后,可以通过newInstance获取对象
Object O = type.newInstance();
item.set(reportController, O);
} catch (InstantiationException | IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
System.out.println(reportController.getReportService());
}
}
运行结果
com.project.service.ReportService@4c873330