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


Java BeanUtils.isSimpleValueType方法代码示例

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


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

示例1: getObjectBody

import org.springframework.beans.BeanUtils; //导入方法依赖的package包/类
private Object getObjectBody(WxApiMethodInfo wxApiMethodInfo, Object[] args) {
    MethodParameter methodParameter = wxApiMethodInfo.getMethodParameters().stream()
            .filter(p -> !BeanUtils.isSimpleValueType(p.getParameterType()) || p.hasParameterAnnotation(WxApiBody.class))
            .findFirst().orElse(null);
    if (methodParameter == null) {
        throw new WxAppException("没有可处理的参数");
    }
    // 不是简单类型
    if (!BeanUtils.isSimpleValueType(methodParameter.getParameterType())) {
        // 暂时只支持json
        return args[methodParameter.getParameterIndex()];
    }
    if (args[methodParameter.getParameterIndex()] != null) {
        return args[methodParameter.getParameterIndex()].toString();
    } else {
        return "";
    }
}
 
开发者ID:FastBootWeixin,项目名称:FastBootWeixin,代码行数:19,代码来源:WxApiExecutor.java

示例2: getStringBody

import org.springframework.beans.BeanUtils; //导入方法依赖的package包/类
private String getStringBody(WxApiMethodInfo wxApiMethodInfo, Object[] args) {
    MethodParameter methodParameter = wxApiMethodInfo.getMethodParameters().stream()
            .filter(p -> BeanUtils.isSimpleValueType(p.getParameterType()) || p.hasParameterAnnotation(WxApiBody.class))
            .findFirst().orElse(null);
    if (methodParameter == null) {
        throw new WxAppException("没有可处理的参数");
    }
    // 不是简单类型
    if (!BeanUtils.isSimpleValueType(methodParameter.getParameterType())) {
        try {
            // 暂时只支持json
            return jsonConverter.writeValueAsString(args[methodParameter.getParameterIndex()]);
        } catch (JsonProcessingException e) {
            logger.error(e.getMessage(), e);
        }
    }
    if (args[methodParameter.getParameterIndex()] != null) {
        return args[methodParameter.getParameterIndex()].toString();
    } else {
        return "";
    }
}
 
开发者ID:FastBootWeixin,项目名称:FastBootWeixin,代码行数:23,代码来源:WxApiExecutor.java

示例3: isBindingCandidate

import org.springframework.beans.BeanUtils; //导入方法依赖的package包/类
/**
 * Whether the given attribute requires a {@link BindingResult} in the model.
 */
private boolean isBindingCandidate(String attributeName, Object value) {
	if (attributeName.startsWith(BindingResult.MODEL_KEY_PREFIX)) {
		return false;
	}

	Class<?> attrType = (value != null) ? value.getClass() : null;
	if (this.sessionAttributesHandler.isHandlerSessionAttribute(attributeName, attrType)) {
		return true;
	}

	return (value != null && !value.getClass().isArray() && !(value instanceof Collection) &&
			!(value instanceof Map) && !BeanUtils.isSimpleValueType(value.getClass()));
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:17,代码来源:ModelFactory.java

示例4: isBindingCandidate

import org.springframework.beans.BeanUtils; //导入方法依赖的package包/类
/**
 * Determine whether the given value qualifies as a "binding candidate", i.e. might potentially be subject to
 * bean-style data binding later on.
 */
protected boolean isBindingCandidate(Object value) {
	return (value != null && !value.getClass().isArray() && !(value instanceof Collection) &&
			!(value instanceof Map) && !BeanUtils.isSimpleValueType(value.getClass()));
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:9,代码来源:HandlerMethodInvoker.java


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