我正在寻找BeanUtils.getProperty()的替代者。我想拥有替代者的唯一原因是避免最终用户具有更多依赖性。

我正在处理自定义约束,这是我拥有的一部分代码

final Object firstObj = BeanUtils.getProperty(value, this.firstFieldName);
final Object secondObj = BeanUtils.getProperty(value, this.secondFieldName);

由于我需要使这两个属性脱离对象。
在没有任何第三方系统的情况下,还有其他替代方法吗,或者我需要从BeanUtilsBean复制这段代码?

最佳答案

BeanUtils非常强大,因为它支持嵌套属性。例如“bean.prop1.prop2”,将Map s处理为bean和DynaBeans。

例如:

 HashMap<String, Object> hashMap = new HashMap<String, Object>();
 JTextArea value = new JTextArea();
 value.setText("jArea text");
 hashMap.put("jarea", value);

 String property = BeanUtils.getProperty(hashMap, "jarea.text");
 System.out.println(property);

因此,在您的情况下,我只想编写一个使用java.beans.Introspector的私有(private)方法。
private Object getPropertyValue(Object bean, String property)
        throws IntrospectionException, IllegalArgumentException,
        IllegalAccessException, InvocationTargetException {
    Class<?> beanClass = bean.getClass();
    PropertyDescriptor propertyDescriptor = getPropertyDescriptor(
            beanClass, property);
    if (propertyDescriptor == null) {
        throw new IllegalArgumentException("No such property " + property
                + " for " + beanClass + " exists");
    }

    Method readMethod = propertyDescriptor.getReadMethod();
    if (readMethod == null) {
        throw new IllegalStateException("No getter available for property "
                + property + " on " + beanClass);
    }
    return readMethod.invoke(bean);
}

private PropertyDescriptor getPropertyDescriptor(Class<?> beanClass,
        String propertyname) throws IntrospectionException {
    BeanInfo beanInfo = Introspector.getBeanInfo(beanClass);
    PropertyDescriptor[] propertyDescriptors = beanInfo
            .getPropertyDescriptors();
    PropertyDescriptor propertyDescriptor = null;
    for (int i = 0; i < propertyDescriptors.length; i++) {
        PropertyDescriptor currentPropertyDescriptor = propertyDescriptors[i];
        if (currentPropertyDescriptor.getName().equals(propertyname)) {
            propertyDescriptor = currentPropertyDescriptor;
        }

    }
    return propertyDescriptor;
}

关于java - 替代BeanUtils.getProperty(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19402044/

10-11 04:13