当前位置: 首页>>代码示例>>Java>>正文


Java PropertyUtils.isReadable方法代码示例

本文整理汇总了Java中org.apache.commons.beanutils.PropertyUtils.isReadable方法的典型用法代码示例。如果您正苦于以下问题:Java PropertyUtils.isReadable方法的具体用法?Java PropertyUtils.isReadable怎么用?Java PropertyUtils.isReadable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.commons.beanutils.PropertyUtils的用法示例。


在下文中一共展示了PropertyUtils.isReadable方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: processarValorsFiltre

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
private Map<String, Object> processarValorsFiltre(
		Object filtreCommand,
		List<TascaDadaDto> dadesFiltre,
		Map<String, Object> valors) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
	Map<String, Object> valorsPerService = new HashMap<String, Object>();
	for (TascaDadaDto dada: dadesFiltre) {
		String clau = (dada.getDefinicioProcesKey() == null) ? dada.getVarCodi() : dada.getDefinicioProcesKey() + "." + dada.getVarCodi();
		clau = clau.replace(
				ExpedientCamps.EXPEDIENT_PREFIX_JSP,
				ExpedientCamps.EXPEDIENT_PREFIX);
		if (CampTipusDto.BOOLEAN.equals(dada.getCampTipus()) && PropertyUtils.isReadable(filtreCommand, dada.getVarCodi())) {
			Boolean valor = (Boolean) PropertyUtils.getSimpleProperty(
					filtreCommand,
					dada.getVarCodi());
			valors.put(
					dada.getVarCodi(),
					valor);
		}
		valorsPerService.put(
				clau,
				valors.get(dada.getVarCodi()));
	}
	return valorsPerService;
}
 
开发者ID:GovernIB,项目名称:helium,代码行数:25,代码来源:ExpedientConsultaInformeController.java

示例2: copyBeanNotNull2Bean

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
/**
 * 对象拷贝 数据对象空值不拷贝到目标对象
 * 
 * @param databean 待拷贝对象
 * @param tobean 目标对象
 * @throws NoSuchMethodException
 */
public static void copyBeanNotNull2Bean(Object databean, Object tobean) throws Exception {
	PropertyDescriptor origDescriptors[] = PropertyUtils.getPropertyDescriptors(databean);
	for (int i = 0; i < origDescriptors.length; i++) {
		String name = origDescriptors[i].getName();
		// String type = origDescriptors[i].getPropertyType().toString();
		if ("class".equals(name)) {
			continue; // No point in trying to set an object's class
		}
		if (PropertyUtils.isReadable(databean, name) && PropertyUtils.isWriteable(tobean, name)) {
			try {
				Object value = PropertyUtils.getSimpleProperty(databean, name);
				if (value != null) {
					getInstance().setSimpleProperty(tobean, name, value);
				}
			} catch (java.lang.IllegalArgumentException ie) {
				; // Should not happen
			} catch (Exception e) {
				; // Should not happen
			}

		}
	}
}
 
开发者ID:tzou24,项目名称:abina-common-util,代码行数:31,代码来源:ParamsUtils.java

示例3: get

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
public default Object get(Object key) {
    try {
        if (PropertyUtils.isReadable(this, key.toString())) {

            return PropertyUtils.getProperty(this, key.toString());
        }

        return getAttributes().get(key);
    } catch (Exception ex) {
        throw new RuntimeException(ex);
    }
}
 
开发者ID:StallionCMS,项目名称:stallion-core,代码行数:13,代码来源:MappedModel.java

示例4: getFieldValue

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
public static Object getFieldValue(Object obj, String fieldName) {
    Object propertyValue = null;
    try {
        if (PropertyUtils.isReadable(obj, fieldName)) {
            propertyValue = PropertyUtils.getProperty(obj, fieldName);
        }
    } catch (Exception e) {
        logger.error("获取成员变量出错!", e);
        throw new RuntimeException(e);
    }
    return propertyValue;
}
 
开发者ID:thinkhoon,项目名称:tkhoon,代码行数:13,代码来源:ObjectUtil.java

示例5: getValorsPerService

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
@SuppressWarnings("static-access")
private Map<String, Object> getValorsPerService(Object filtreCommand, List<TascaDadaDto> camps, Map<String, Object> valors) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException {
	Map<String, Object> valorsPerService = new HashMap<String, Object>();
	for (TascaDadaDto camp : camps) {
		String clau = (camp.getDefinicioProcesKey() == null) ? camp.getVarCodi() : camp.getDefinicioProcesKey() + "." + camp.getVarCodi();
		clau = camp.getVarCodi().replace(ExpedientCamps.EXPEDIENT_PREFIX_JSP, ExpedientCamps.EXPEDIENT_PREFIX);
		if (camp.getCampTipus().BOOLEAN.equals(camp.getCampTipus()) && PropertyUtils.isReadable(filtreCommand, camp.getVarCodi())) {
			Boolean valor = (Boolean) PropertyUtils.getSimpleProperty(filtreCommand, camp.getVarCodi());
			valors.put(camp.getVarCodi(), valor);
		}
		valorsPerService.put(clau, valors.get(camp.getVarCodi()));
	}
	return valorsPerService;
}
 
开发者ID:GovernIB,项目名称:helium,代码行数:15,代码来源:ExpedientInformeController.java

示例6: copyProperties

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public void copyProperties(Object dest, Object orig) throws IllegalAccessException, InvocationTargetException {
    PropertyDescriptor[] origDescriptors =
            PropertyUtils.getPropertyDescriptors(orig);
    for (PropertyDescriptor origDescriptor : origDescriptors) {
        String name = origDescriptor.getName();
        if ("class".equals(name)) {
            continue; // No point in trying to set an object's class
        }
        if (PropertyUtils.isReadable(orig, name) &&
                PropertyUtils.isWriteable(dest, name)) {


            try {
                Class origPropClass = PropertyUtils.getPropertyType(orig, name);
                Class destPropClass = PropertyUtils.getPropertyType(dest, name);

                if (destPropClass.isAssignableFrom(origPropClass)) {
                    Object value =
                            PropertyUtils.getSimpleProperty(orig, name);
                    BeanUtils.copyProperty(dest, name, value);
                }
            } catch (NoSuchMethodException e) {
                // Should not happen
            }
        }
    }
}
 
开发者ID:nfl,项目名称:audible,代码行数:29,代码来源:TypeSafeCopy.java

示例7: getFieldValue

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
/**
 * 获取成员变量
 */
public static Object getFieldValue(Object obj, String fieldName) {
    Object propertyValue = null;
    try {
        if (PropertyUtils.isReadable(obj, fieldName)) {
            propertyValue = PropertyUtils.getProperty(obj, fieldName);
        }
    } catch (Exception e) {
        logger.error("获取成员变量出错!", e);
        throw new RuntimeException(e);
    }
    return propertyValue;
}
 
开发者ID:xuerong,项目名称:MMServerEngine,代码行数:16,代码来源:ObjectUtil.java

示例8: propertyExists

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
static boolean propertyExists(Object bean, String property) {
    return PropertyUtils.isReadable(bean, property) && 
           PropertyUtils.isWriteable(bean, property); 
}
 
开发者ID:tairmansd,项目名称:CriteriaBuilder,代码行数:5,代码来源:CriteriaServiceImpl.java

示例9: containsKey

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
public default boolean containsKey(String key) {
    return getAttributes().containsKey(key) || PropertyUtils.isReadable(this, key);
}
 
开发者ID:StallionCMS,项目名称:stallion-core,代码行数:4,代码来源:MappedModel.java

示例10: propertyExists

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
public static boolean propertyExists(Object bean, String property) {
	return PropertyUtils.isReadable(bean, property) && PropertyUtils.isWriteable(bean, property);
}
 
开发者ID:Transkribus,项目名称:TranskribusSwtGui,代码行数:4,代码来源:Utils.java

示例11: propertyExists

import org.apache.commons.beanutils.PropertyUtils; //导入方法依赖的package包/类
/**
 * Check if writable property exists.
 *
 * @param bean bean to inspect
 * @param property name of property
 * @return true if writable property exists.
 */
private static boolean propertyExists(Object bean, String property) {
    return PropertyUtils.isReadable(bean, property)
            && PropertyUtils.isWriteable(bean, property);
}
 
开发者ID:Sybit-Education,项目名称:airtable.java,代码行数:12,代码来源:Table.java


注:本文中的org.apache.commons.beanutils.PropertyUtils.isReadable方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。