通过反射实现注解AutoWried

上篇中通过反射进行对象注入讲到了基本的对象注入,本篇在上章节的基础上进行拓展 实现基本的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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值