Java 内省(Introspector)深入理解

2024-06-22 11:48

本文主要是介绍Java 内省(Introspector)深入理解,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Java 内省(Introspector)深入理解

一些概念:

  内省(Introspector) 是Java 语言对 JavaBean 类属性、事件的一种缺省处理方法。

  JavaBean是一种特殊的类,主要用于传递数据信息,这种类中的方法主要用于访问私有的字段,且方法名符合某种命名规则。如果在两个模块之间传递信息,可以将信息封装进JavaBean中,这种对象称为“值对象”(Value Object),或“VO”。方法比较少。这些信息储存在类的私有变量中,通过set()、get()获得。

  例如类UserInfo :

package com.peidasoft.Introspector;public class UserInfo {private long userId;private String userName;private int age;private String emailAddress;public long getUserId() {return userId;}public void setUserId(long userId) {this.userId = userId;}public String getUserName() {return userName;}public void setUserName(String userName) {this.userName = userName;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}public String getEmailAddress() {return emailAddress;}public void setEmailAddress(String emailAddress) {this.emailAddress = emailAddress;}}

 

  在类UserInfo中有属性 userName, 那我们可以通过 getUserName,setUserName来得到其值或者设置新的值。通过 getUserName/setUserName来访问 userName属性,这就是默认的规则。 Java JDK中提供了一套 API 用来访问某个属性的 getter/setter 方法,这就是内省。

  JDK内省类库:

  PropertyDescriptor类:

  PropertyDescriptor类表示JavaBean类通过存储器导出一个属性。主要方法:

      1. getPropertyType(),获得属性的Class对象;
      2. getReadMethod(),获得用于读取属性值的方法;getWriteMethod(),获得用于写入属性值的方法;
      3. hashCode(),获取对象的哈希值;
      4. setReadMethod(Method readMethod),设置用于读取属性值的方法;
      5. setWriteMethod(Method writeMethod),设置用于写入属性值的方法。

  实例代码如下:

package com.peidasoft.Introspector;import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;public class BeanInfoUtil {public static void setProperty(UserInfo userInfo,String userName)throws Exception{PropertyDescriptor propDesc=new PropertyDescriptor(userName,UserInfo.class);Method methodSetUserName=propDesc.getWriteMethod();methodSetUserName.invoke(userInfo, "wong");System.out.println("set userName:"+userInfo.getUserName());}public static void getProperty(UserInfo userInfo,String userName)throws Exception{PropertyDescriptor proDescriptor =new PropertyDescriptor(userName,UserInfo.class);Method methodGetUserName=proDescriptor.getReadMethod();Object objUserName=methodGetUserName.invoke(userInfo);System.out.println("get userName:"+objUserName.toString());}
}

 

  Introspector类:

  将JavaBean中的属性封装起来进行操作。在程序把一个类当做JavaBean来看,就是调用Introspector.getBeanInfo()方法,得到的BeanInfo对象封装了把这个类当做JavaBean看的结果信息,即属性的信息。

  getPropertyDescriptors(),获得属性的描述,可以采用遍历BeanInfo的方法,来查找、设置类的属性。具体代码如下:

package com.peidasoft.Introspector;import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;public class BeanInfoUtil {public static void setPropertyByIntrospector(UserInfo userInfo,String userName)throws Exception{BeanInfo beanInfo=Introspector.getBeanInfo(UserInfo.class);PropertyDescriptor[] proDescrtptors=beanInfo.getPropertyDescriptors();if(proDescrtptors!=null&&proDescrtptors.length>0){for(PropertyDescriptor propDesc:proDescrtptors){if(propDesc.getName().equals(userName)){Method methodSetUserName=propDesc.getWriteMethod();methodSetUserName.invoke(userInfo, "alan");System.out.println("set userName:"+userInfo.getUserName());break;}}}}public static void getPropertyByIntrospector(UserInfo userInfo,String userName)throws Exception{BeanInfo beanInfo=Introspector.getBeanInfo(UserInfo.class);PropertyDescriptor[] proDescrtptors=beanInfo.getPropertyDescriptors();if(proDescrtptors!=null&&proDescrtptors.length>0){for(PropertyDescriptor propDesc:proDescrtptors){if(propDesc.getName().equals(userName)){Method methodGetUserName=propDesc.getReadMethod();Object objUserName=methodGetUserName.invoke(userInfo);System.out.println("get userName:"+objUserName.toString());break;}}}}}

 

    通过这两个类的比较可以看出,都是需要获得PropertyDescriptor,只是方式不一样:前者通过创建对象直接获得,后者需要遍历,所以使用PropertyDescriptor类更加方便。

  使用实例:

package com.peidasoft.Introspector;public class BeanInfoTest {/*** @param args*/public static void main(String[] args) {UserInfo userInfo=new UserInfo();userInfo.setUserName("peida");try {BeanInfoUtil.getProperty(userInfo, "userName");BeanInfoUtil.setProperty(userInfo, "userName");BeanInfoUtil.getProperty(userInfo, "userName");BeanInfoUtil.setPropertyByIntrospector(userInfo, "userName");     BeanInfoUtil.getPropertyByIntrospector(userInfo, "userName");BeanInfoUtil.setProperty(userInfo, "age");} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}}}

 

  输出:

1

2

3

4

5

6

7

8

9

10

11

12

get userName:peida

set userName:wong

get userName:wong

set userName:alan

get userName:alan

java.lang.IllegalArgumentException: argument type mismatch

  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

  at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

  at java.lang.reflect.Method.invoke(Method.java:597)

  at com.peidasoft.Introspector.BeanInfoUtil.setProperty(BeanInfoUtil.java:14)

  at com.peidasoft.Introspector.BeanInfoTest.main(BeanInfoTest.java:22) 

  说明:BeanInfoUtil.setProperty(userInfo, "age");报错是应为age属性是int数据类型,而setProperty方法里面默认给age属性赋的值是String类型。所以会爆出argument type mismatch参数类型不匹配的错误信息。

  BeanUtils工具包:

  由上述可看出,内省操作非常的繁琐,所以所以Apache开发了一套简单、易用的API来操作Bean的属性——BeanUtils工具包。

  BeanUtils工具包:下载:http://commons.apache.org/beanutils/ 注意:应用的时候还需要一个logging包 http://commons.apache.org/logging/

  使用BeanUtils工具包完成上面的测试代码:

package com.peidasoft.Beanutil;import java.lang.reflect.InvocationTargetException;import org.apache.commons.beanutils.BeanUtils;
import org.apache.commons.beanutils.PropertyUtils;import com.peidasoft.Introspector.UserInfo;public class BeanUtilTest {public static void main(String[] args) {UserInfo userInfo=new UserInfo();try {BeanUtils.setProperty(userInfo, "userName", "peida");System.out.println("set userName:"+userInfo.getUserName());System.out.println("get userName:"+BeanUtils.getProperty(userInfo, "userName"));BeanUtils.setProperty(userInfo, "age", 18);System.out.println("set age:"+userInfo.getAge());System.out.println("get age:"+BeanUtils.getProperty(userInfo, "age"));System.out.println("get userName type:"+BeanUtils.getProperty(userInfo, "userName").getClass().getName());System.out.println("get age type:"+BeanUtils.getProperty(userInfo, "age").getClass().getName());PropertyUtils.setProperty(userInfo, "age", 8);System.out.println(PropertyUtils.getProperty(userInfo, "age"));System.out.println(PropertyUtils.getProperty(userInfo, "age").getClass().getName());PropertyUtils.setProperty(userInfo, "age", "8"); }catch (IllegalAccessException e) {e.printStackTrace();}catch (InvocationTargetException e) {e.printStackTrace();}catch (NoSuchMethodException e) {e.printStackTrace();}}
}

 

  运行结果:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

set userName:peida

get userName:peida

set age:18

get age:18

get userName type:java.lang.String

get age type:java.lang.String

8

java.lang.Integer

Exception in thread "main" java.lang.IllegalArgumentException: Cannot invoke com.peidasoft.Introspector.UserInfo.setAge

on bean class 'class com.peidasoft.Introspector.UserInfo' - argument type mismatch - had objects of type "java.lang.String"

but expected signature "int"

  at org.apache.commons.beanutils.PropertyUtilsBean.invokeMethod(PropertyUtilsBean.java:2235)

  at org.apache.commons.beanutils.PropertyUtilsBean.setSimpleProperty(PropertyUtilsBean.java:2151)

  at org.apache.commons.beanutils.PropertyUtilsBean.setNestedProperty(PropertyUtilsBean.java:1957)

  at org.apache.commons.beanutils.PropertyUtilsBean.setProperty(PropertyUtilsBean.java:2064)

  at org.apache.commons.beanutils.PropertyUtils.setProperty(PropertyUtils.java:858)

  at com.peidasoft.orm.Beanutil.BeanUtilTest.main(BeanUtilTest.java:38)

Caused by: java.lang.IllegalArgumentException: argument type mismatch

  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

  at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

  at java.lang.reflect.Method.invoke(Method.java:597)

  at org.apache.commons.beanutils.PropertyUtilsBean.invokeMethod(PropertyUtilsBean.java:2170)

  ... 5 more

  说明:

  1.获得属性的值,例如,BeanUtils.getProperty(userInfo,"userName"),返回字符串

  2.设置属性的值,例如,BeanUtils.setProperty(userInfo,"age",8),参数是字符串或基本类型自动包装。设置属性的值是字符串,获得的值也是字符串,不是基本类型。   3.BeanUtils的特点:
    1). 对基本数据类型的属性的操作:在WEB开发、使用中,录入和显示时,值会被转换成字符串,但底层运算用的是基本类型,这些类型转到动作由BeanUtils自动完成。
    2). 对引用数据类型的属性的操作:首先在类中必须有对象,不能是null,例如,private Date birthday=new Date();。操作的是对象的属性而不是整个对象,例如,BeanUtils.setProperty(userInfo,"birthday.time",111111);   

package com.peidasoft.Introspector;
import java.util.Date;public class UserInfo {private Date birthday = new Date();public void setBirthday(Date birthday) {this.birthday = birthday;}public Date getBirthday() {return birthday;}  
}
package com.peidasoft.Beanutil;import java.lang.reflect.InvocationTargetException;
import org.apache.commons.beanutils.BeanUtils;
import com.peidasoft.Introspector.UserInfo;public class BeanUtilTest {public static void main(String[] args) {UserInfo userInfo=new UserInfo();try {BeanUtils.setProperty(userInfo, "birthday.time","111111");Object obj = BeanUtils.getProperty(userInfo, "birthday.time");System.out.println(obj);    }catch (IllegalAccessException e) {e.printStackTrace();}catch (InvocationTargetException e) {e.printStackTrace();}catch (NoSuchMethodException e) {e.printStackTrace();}}
}

 

  3.PropertyUtils类和BeanUtils不同在于,运行getProperty、setProperty操作时,没有类型转换,使用属性的原有类型或者包装类。由于age属性的数据类型是int,所以方法PropertyUtils.setProperty(userInfo, "age", "8")会爆出数据类型不匹配,无法将值赋给属性。

 

这篇关于Java 内省(Introspector)深入理解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1084208

相关文章

JVM 的类初始化机制

前言 当你在 Java 程序中new对象时,有没有考虑过 JVM 是如何把静态的字节码(byte code)转化为运行时对象的呢,这个问题看似简单,但清楚的同学相信也不会太多,这篇文章首先介绍 JVM 类初始化的机制,然后给出几个易出错的实例来分析,帮助大家更好理解这个知识点。 JVM 将字节码转化为运行时对象分为三个阶段,分别是:loading 、Linking、initialization

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

浅析Spring Security认证过程

类图 为了方便理解Spring Security认证流程,特意画了如下的类图,包含相关的核心认证类 概述 核心验证器 AuthenticationManager 该对象提供了认证方法的入口,接收一个Authentiaton对象作为参数; public interface AuthenticationManager {Authentication authenticate(Authenti

Spring Security--Architecture Overview

1 核心组件 这一节主要介绍一些在Spring Security中常见且核心的Java类,它们之间的依赖,构建起了整个框架。想要理解整个架构,最起码得对这些类眼熟。 1.1 SecurityContextHolder SecurityContextHolder用于存储安全上下文(security context)的信息。当前操作的用户是谁,该用户是否已经被认证,他拥有哪些角色权限…这些都被保

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java架构师知识体认识

源码分析 常用设计模式 Proxy代理模式Factory工厂模式Singleton单例模式Delegate委派模式Strategy策略模式Prototype原型模式Template模板模式 Spring5 beans 接口实例化代理Bean操作 Context Ioc容器设计原理及高级特性Aop设计原理Factorybean与Beanfactory Transaction 声明式事物

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory

认识、理解、分类——acm之搜索

普通搜索方法有两种:1、广度优先搜索;2、深度优先搜索; 更多搜索方法: 3、双向广度优先搜索; 4、启发式搜索(包括A*算法等); 搜索通常会用到的知识点:状态压缩(位压缩,利用hash思想压缩)。