发布于2021-05-29 21:20 阅读(1370) 评论(0) 点赞(17) 收藏(0)
springboot web 项目中
@Data
@Component
public class Cat {
@Value("1")
private int id;
@Value("小花猫")
private String name;
}
@SpringBootApplication
public class App {
public static void main(String[] args) {
ApplicationContext run = SpringApplication.run(App.class);
System.out.println(run.getBean(Cat.class));
}
}
启动程序: 输出如下
添加@Componet
和 Value
实现bean 的创建和属性值的注入。
注解本身不会实现这些功能,只是一个标志。
下面来自定义注解,实现 上述功能
自定义MyValue
和 MyComponet
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface MyValue {
String value() default "";
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface MyComponent {
String value() default "";
}
@Data
@MyComponent
public class Dog {
@MyValue("2")
private Integer id;
@MyValue("旺财")
private String name;
}
核心代码
public class Test2 {
public static void main(String[] args) throws InvocationTargetException, InstantiationException, IllegalAccessException, NoSuchMethodException {
Class<Dog> dogClass = Dog.class;
MyComponent annotation = dogClass.getAnnotation(MyComponent.class);
if (annotation !=null ){
//System.out.println("dogClass 添加了Mycomponet 注解");
Constructor<Dog> constructor = dogClass.getConstructor(null);
//创建 dog 实例对象
Dog dog = constructor.newInstance(null);
//开始赋值,获取类本身的所有属性方法
Field[] fields = dogClass.getDeclaredFields();
for (Field field : fields) {
// System.out.println(field); //打印输出属性
MyValue valueAnno = field.getAnnotation(MyValue.class);
if(valueAnno != null){
// System.out.println("filed 添加了 MyValue 注解");
//获取注解的值
String value = valueAnno.value();
// System.out.println(field + "注解值为" + value);
//把值赋值给对象的属性的值
//暴力反射开启 可以给添加了private 属性值赋值
field.setAccessible(true);
//判断属性类型
if(field.getType().getName().equals("java.lang.Integer")){
Integer val = Integer.parseInt(value);
field.set(dog,val);
}else{
field.set(dog,value);
}
}
}
System.out.println(dog);
}else{
System.out.println("无法创建对象");
}
}
}
启动代码:
作者:coding
链接:http://www.javaheidong.com/blog/article/207320/6384e2fa3fb3ab3d610f/
来源:java黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 java黑洞网 All Rights Reserved 版权所有,并保留所有权利。京ICP备18063182号-2
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!