概述
Apache的BeanUtils Bean工具类很强大,基本涵盖了Bean操作的所有方法。这里的话我们就讲讲两个方面,一是Bean covert to Map,二是Map covert to Bean;Bean转Map其实利用的是Java的动态性-Reflection技术,不管是什么Bean通过动态解析都是可以转成Map对象的,但前提条件是field需要符合驼峰命名不过这也是写码规范,另一个条件就是每个field需要getter、setter方法。而Map转Bean一样也是通过Reflection动态解析成Bean。Java的Reflection其实是挺重要的,我们用的很多工具类都有它的存在,我们不止要会用而且更重要的是能够理解是为什么,最好是自己去手写实现这样的话更能加深理解。
用Apache BeanUtils将Bean转Map
代码实现
1 /** 2 * 用apache的BeanUtils实现Bean covert to Map 3 * @throws Exception 4 */ 5 public static void beanToMap() throws Exception { 6 User user=new User(); 7 Map<String,String> keyValues=null; 8 9 user.setPassWord("password");10 user.setComments("test method!");11 user.setUserName("wang shisheng");12 user.setCreateTime(new Date());13 14 keyValues=BeanUtils.describe(user);15 16 LOGGER.info("bean covert to map:{}", JSONObject.toJSON(keyValues).toString());17 }
测试结果
用Apache BeanUtils将Map转Bean
代码实现
1/** 2 * 用apache的BeanUtils实现Map covert to Bean 3 * @throws Exception 4*/ 5publicstaticvoidmapToBean()throws Exception { 6Map keyValues=newHashMap<>(); 7User user=new User(); 8 9keyValues.put("sessionId","ED442323232ff3");10keyValues.put("userName","wang shisheng");11keyValues.put("passWord","xxxxx44333");12keyValues.put("requestNums","34");1314 BeanUtils.populate(user,keyValues);1516LOGGER.info("map covert to bean:{}", user.toString());17}
测试结果
理解BeanUtils将Bean转Map的实现之手写Bean转Map
代码实现
/** * 应用反射(其实工具类底层一样用的反射技术) * 手动写一个 Bean covert to Map */ public static void autoBeanToMap(){ User user=new User(); Map<String,Object> keyValues=new HashMap<>(); user.setPassWord("password"); user.setComments("test method!"); user.setUserName("wang shisheng"); user.setUserCode("2018998770"); user.setCreateTime(new Date()); Method[] methods=user.getClass().getMethods(); try { for(Method method: methods){ String methodName=method.getName(); //反射获取属性与属性值的方法很多,以下是其一;也可以直接获得属性,不过获取的时候需要用过设置属性私有可见 if (methodName.contains("get")){ //invoke 执行get方法获取属性值 Object value=method.invoke(user); //根据setXXXX 通过以下算法取得属性名称 String key=methodName.substring(methodName.indexOf("get")+3); Object temp=key.substring(0,1).toString().toLowerCase(); key=key.substring(1); //最终得到属性名称 key=temp+key; keyValues.put(key,value); } } }catch (Exception e){ LOGGER.error("错误信息:",e); } LOGGER.info("auto bean covert to map:{}", JSONObject.toJSON(keyValues).toString()); }
测试结果
作者:架构师springboot
链接:https://www.jianshu.com/p/7256de6ad442
共同学习,写下你的评论
评论加载中...
作者其他优质文章