这篇文章给大家分享的是有关JavaBean字段怎么防止非空赋值的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
工具类制作起因,有时候项目中出一点点错误,在所难免,经常,有些地方的字段是String,但是到了其他地方是Long,Date,Interger,BigDecimal,这个时候每次都需要判断下是否为空,否则就会在New BigDecimal(string)等中转化失败,报空指针。 如果字段很多,简直太恶心了。
这里日期是最恶心心,日期分为Date类型和String类型 转化为Date
举例
if(string!=null){ date.setBigValue(new BigDecimal(string)); }
1.1、初始JavaBean User
public class User { /** * 如果属性类型为基本数据类型,则会有默认值 * 影响正确判断,请特别注意 */ // private int age; private Integer age; private String name; private String gender; private BigDecimal bigDecimal; private Date date ; private Long longvalue; private String dateStr ; //注意这里是String类型的日期 例如 2018-12-09 00:00:00 get set……
1.2、被赋值的JavaBean
/** * 作者 :HealerJean * 日期 :2018/12/13 上午11:03. * 类描述: */ public class UserNow { private String nameNow; private String genderNow; private Integer ageNow; private BigDecimal bigDecimalNow ; private Date dateNow ; private Long longvalueNow; private Date dateStrNow ; //注意这里是Date类型 get set……
需要注意的是,下面的日期,在我们通过反射获取到值的时候,它打印出来的是英文日期串,我们需要对他进行一个转化
package com.hlj.IgnoreNullBean; import org.junit.platform.commons.util.StringUtils; import java.lang.reflect.Field; import java.math.BigDecimal; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; /** * 作者 :HealerJean * 日期 :2018/12/13 上午10:55. * 类描述 防止非空字段,在类似于 new BigDecimal(string))中进行报错 */ public class JavaBeanUtil { /** * * @param object 原始数据JavaBean * @param originFieldName 原始数据 字段名字 比如:name * @param newObject 新复制的JavaBean * @param newFilldName 新赋值的字段名字 比如 nameNow * @param dateFormat 如果是date类型的日期, * 1、传入的是String字符串'2018-12-09' 则需要传入相应Fromat格式 yyyy-MM-dd HH:mm:ss * 2、如果是标准高的date类型,那么.toString之后是 -> Fri Dec 14 19:00:07 CST 2018, 则设置为null */ public static void setFieldValue(Object object,String originFieldName,Object newObject,String newFilldName,String ...dateFormat) { try { Field field = object.getClass().getDeclaredField(originFieldName); field.setAccessible(true); Field newfield = newObject.getClass().getDeclaredField(newFilldName); newfield.setAccessible(true); String newfieldType=newfield.getGenericType().toString(); if (field.get(object) != null && StringUtils.isNotBlank(field.get(object).toString())) { String value = field.get(object).toString(); System.out.println(value); switch (newfieldType){ case "class java.lang.Integer": newfield.set(newObject, Integer.valueOf(value)); break; case "class java.lang.Long": newfield.set(newObject, Long.valueOf(value)); break; case "class java.math.BigDecimal": newfield.set(newObject, new BigDecimal(Double.valueOf(value)) ); break; case "class java.util.Date": Date date = null; if(dateFormat!=null&&dateFormat.length>0){ date = new SimpleDateFormat(dateFormat[0]).parse(value); newfield.set(newObject, date); }else { date=new SimpleDateFormat("EEE MMM dd HH:mm:ss Z yyyy", Locale.UK).parse(value); } newfield.set(newObject, date); break; default: break; } } } catch (Exception e) { e.printStackTrace(); } } }
package com.hlj.IgnoreNullBean; import com.hlj.IgnoreNullBean.data.User; import com.hlj.IgnoreNullBean.data.UserNow; import java.math.BigDecimal; import java.util.Date; /** * 作者 :HealerJean * 日期 :2018/12/13 上午10:54. * 类描述: */ public class TestMain { public static void main(String[] args) { User user = new User(); user.setAge(25); user.setBigDecimal(new BigDecimal(10.21)); user.setDate(new Date()); user.setLongvalue(100L); user.setDateStr("2018-12-09 00:00:00"); UserNow userNow = new UserNow() ; JavaBeanUtil.setFieldValue(user,"age",userNow,"ageNow"); System.out.println("ageNow:"+userNow.getAgeNow()); JavaBeanUtil.setFieldValue(user,"bigDecimal",userNow,"bigDecimalNow"); System.out.println("bigDecimalNow:"+userNow.getBigDecimalNow()); JavaBeanUtil.setFieldValue(user,"date",userNow,"dateNow"); System.out.println("dateNow:"+ userNow.getDateNow()); JavaBeanUtil.setFieldValue(user,"longvalue",userNow,"longvalueNow"); System.out.println("longvalueNow:"+userNow.getLongvalueNow()); JavaBeanUtil.setFieldValue(user,"dateStr",userNow,"dateStrNow","yyyy-MM-dd HH:mm:ss"); System.out.println("dateStrNow:"+userNow.getDateStrNow()); } ageNow:25 bigDecimalNow:10.21000000000000085265128291212022304534912109375 dateNow:Fri Dec 14 19:27:07 CST 2018 longvalueNow:100 dateStrNow:Sun Dec 09 00:00:00 CST 2018
package com.duodian.youhui.admin.utils; import com.duodian.youhui.admin.Exceptions.AppException; import com.duodian.youhui.entity.db.taobao.TaobaoWechat; import java.lang.reflect.Field; /** * 作者 :HealerJean * 日期 :2019/1/24 下午4:30. * 类描述:判断是否为空 或者是null 工具 */ public class JudgeNullUtils { public static boolean isNull(Object object,String ... fieldName){ try { for (int i = 0; i < fieldName.length; i++) { Field field = null; field = object.getClass().getDeclaredField(fieldName[i]); field.setAccessible(true);//暴力反射,获取获取数据 if(field.get(object)==null){ //返回flase或者直接抛出异常,根据我们的情况而定 throw new AppException(fieldName[i]+"不能为空"); } } return true ; } catch (NoSuchFieldException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } return false ; } }
@ApiOperation(value = "添加淘宝营销总代理", notes = "添加淘宝营销总代理", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE, produces = MediaType.APPLICATION_JSON_VALUE, response = ResponseBean.class ) @ResponseBody @GetMapping("addEsWechat") public ResponseBean addEsWechat(TaobaoEsWechat taobaoWechat ){ try { JudgeNullUtils.isNull(taobaoWechat,"code","status"); return ResponseBean.buildSuccess(taobaoEsWechatService.addTaobaoEsWechat(taobaoWechat)); } catch (AppException e) { ExceptionLogUtils.log(e, this.getClass()); return ResponseBean.buildFailure(e.getCode(),e.getMessage()); } catch (Exception e) { ExceptionLogUtils.log(e, this.getClass()); return ResponseBean.buildFailure(e.getMessage()); } }
感谢各位的阅读!关于“JavaBean字段怎么防止非空赋值”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。