//判断对象里面是否有值为空
if(StringUtils.isNotBlank(ObjectUtils.toString(student.getName),""))){
}
for (Field f : obj.getClass().getDeclaredFields()) {
f.setAccessible(true);
if (f.get(obj) == null) { //判断字段是否为空,并且对象属性中的基本都会转为对象类型来判断
......
//这里可以给空字段初始化,及其他操作
}
}
UserDto userDto = userClientService.selectUser(userId);
Long orgId = Optional.ofNullable(userDto).map(item -> item.getOrgId()).orElse(0L);
if (orgId > 0) {
//对象不为空,业务逻辑
} else {
LOGGER.error(null, "无法获取用户的组织机构Id,userId:{},key:{}", userId, ossKey);
}
如果没有给value赋值,则map.get(key).toString().equals(“”)为true,但是map.get(key).equals(null)为false;
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/115976.html