本文整理汇总了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 "";
}
}
示例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 "";
}
}
示例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()));
}
示例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()));
}