使用 pojo/java bean 的 getter 方法获取属性/字段名称?

2022-09-02 00:19:48

我有一个下面的类,我需要使用java反射从getter方法获取字段名称。是否可以使用 getter 方法获取字段名称或属性名称?

class A {

    private String name;
    private String salary;

    // getter and setter methods
}

我的问题是:我可以通过getter方法获取字段/属性名称吗?如果我使用 getName(),我可以得到 name 属性吗?我需要名称属性,但不是其值。通过Java反射可以吗?


答案 1

是的,这是100%可能的。

public static String getFieldName(Method method)
{
    try
    {
        Class<?> clazz=method.getDeclaringClass();
        BeanInfo info = Introspector.getBeanInfo(clazz);  
        PropertyDescriptor[] props = info.getPropertyDescriptors();  
        for (PropertyDescriptor pd : props) 
        {  
            if(method.equals(pd.getWriteMethod()) || method.equals(pd.getReadMethod()))
            {
                System.out.println(pd.getDisplayName());
                return pd.getName();
            }
        }
    }
    catch (IntrospectionException e) 
    {
        e.printStackTrace();
    }
    catch (Exception e) 
    {
        e.printStackTrace();
    }


    return null;
}

答案 2

反射-util 库提供了一种以类型安全的方式确定属性(名称)的方法。例如,通过使用 getter 方法:

String propertyName = PropertyUtils.getPropertyName(A.class, A::getSalary);

在这种情况下,的值将为 。propertyName"salary"

免责声明:我是refrepres-util库的作者之一。