基于Spring ConversionService实现一个Map转对象工具类

在使用jdbcTemplate时,查询结果转为POJO对象可以使用BeanPropertyRowMapper,观察这个类可以发现,主要是利用DefaultConversionServicePropertyDescriptor这两个Spring的工具,实现属性转换和属性注入;
但是BeanPropertyRowMapper的性能不太好,做了很多安全校验工作,这些工作对于我们转换没有太大的用处,因此笔者基于BeanPropertyRowMapper开发了一个快速将Map转为Pojo的工具类,代码如下:

@Slf4j
public class EntityMapper {

    private static final ConcurrentHashMap<Class<?>, Map<String, PropertyDescriptor>> CACHE = new ConcurrentHashMap<>(64);

    /** ConversionService for binding JDBC values to bean properties. */
    private static final DefaultConversionService conversionService = new DefaultConversionService();
    static {
        //使用默认转换器,并增加时间转换器
        conversionService.addConverter(String.class, LocalDateTime.class,
                                       value -> LocalDateTime.parse(value, ISO_LOCAL_DATE_TIME));
        conversionService.addConverter(String.class, OffsetDateTime.class,
                                       value -> OffsetDateTime.parse(value, ISO_OFFSET_DATE_TIME));
        conversionService.addConverter(String.class, LocalDate.class,
                                       value -> LocalDate.parse(value, ISO_LOCAL_DATE));
        conversionService.addConverter(String.class, LocalTime.class,
                                       value -> LocalTime.parse(value, ISO_LOCAL_TIME));
        conversionService.addConverter(Timestamp.class, LocalDateTime.class,
                                       value -> value.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime());

        conversionService.addConverter(String.class, Date.class,
                                       value -> {
                                           ZoneId zoneId = ZoneId.systemDefault();
                                           Instant instant = LocalDateTime.parse(value, ISO_LOCAL_DATE_TIME).atZone(zoneId).toInstant();
                                           return Date.from(instant);
                                       });

    }


    /**
     * 增加自定义转换器
     */
    public <S, T> void addConverter(Class<S> sourceType, Class<T> targetType, Converter<? super S, ? extends T> converter) {
        conversionService.addConverter(sourceType, targetType, converter);
    }

    /**
     * map转为对象
     *
     * @param map           map
     * @param mappedClass   对象类型
     * @return              对象
     */
    public static  <T> T mapToEntity(Map<String, Object> map, Class<T> mappedClass) {
        T mappedObject = BeanUtils.instantiateClass(mappedClass);
        Map<String, PropertyDescriptor> mappedFields = getMappedFields(mappedClass);

        return populate(map, mappedObject, mappedFields);
    }



    /**
     * 转为list
     *
     * @param mapList       map list
     * @param mappedClass   对象类型
     * @return              对象列表
     */
    public static <T> List<T> mapToEntityList(List<Map<String, Object>> mapList, Class<T> mappedClass) {
        if (mapList == null || mapList.isEmpty()) {
            return Collections.emptyList();
        }

        Map<String, PropertyDescriptor> mappedFields = getMappedFields(mappedClass);

        List<T> list = new ArrayList<>(mapList.size());

        for (Map<String, Object> map : mapList) {
            T mappedObject = BeanUtils.instantiateClass(mappedClass);
            populate(map, mappedObject, mappedFields);
            list.add(mappedObject);
        }

        return list;
    }




    /**
     * 将map的属性复制到mappedObject对象上
     *
     * @param map               map
     * @param mappedObject      目标对象
     * @param mappedFields      对象类属性
     * @return                  目标对象
     */
    private static <T> T populate(Map<String, Object> map, T mappedObject, Map<String, PropertyDescriptor> mappedFields) {
        Set<Map.Entry<String, Object>> entrySet = map.entrySet();

        try {
            for (Map.Entry<String, Object> entry : entrySet) {
                String column = entry.getKey();
                Object value = entry.getValue();
                String field = lowerCaseName(column);
                PropertyDescriptor pd = mappedFields.get(field);

                if (pd == null) {
                    continue;
                }

                Method writeMethod = pd.getWriteMethod();
                Class<?> propertyType = pd.getPropertyType();
                Class<?> valueClass = value.getClass();
                Object convertValue;

                //如果类型相同或者value是子类
                if (propertyType.isAssignableFrom(valueClass)) {
                    convertValue = value;
                }
                //如果value是map
                else if (value instanceof Map) {
                    convertValue = mapToEntity((Map<String, Object>) value, propertyType);
                }
                //如果可以转换
                else if (conversionService.canConvert(valueClass, propertyType)) {
                    convertValue = conversionService.convert(value, propertyType);
                }
                //其他情况,抛出异常
                else {
                    log.info("- cannot convert value {}, source type = {},  target type = {}", value, valueClass, propertyType);
                    throw new RuntimeException("无法转换");
                }
                
                writeMethod.invoke(mappedObject, convertValue);
            }
        } catch (IllegalAccessException | InvocationTargetException ex) {
            throw new RuntimeException("convert map to pojo error", ex);
        }

        return mappedObject;
    }



    /**
     * 从缓存中获取
     * @param mappedClass
     * @param <T>
     * @return
     */
    private static  <T> Map<String, PropertyDescriptor> getMappedFields(Class<T> mappedClass) {
        Map<String, PropertyDescriptor> descriptorMap = CACHE.get(mappedClass);
        if (descriptorMap != null) {
            return descriptorMap;
        }

        return addEntityClass(mappedClass);
    }

    /**
     * 增加实体类
     * @param mappedClass
     */
    public static Map<String, PropertyDescriptor> addEntityClass(Class<?> mappedClass) {

        return CACHE.computeIfAbsent(mappedClass, key -> {
            PropertyDescriptor[] pds = BeanUtils.getPropertyDescriptors(mappedClass);

            Map<String, PropertyDescriptor> mappedFields = new HashMap<>();
            for (PropertyDescriptor pd : pds) {
                if (pd.getWriteMethod() != null) {
                    mappedFields.put(lowerCaseName(pd.getName()), pd);
                    String underscoredName = underscoreName(pd.getName());
                    if (!lowerCaseName(pd.getName()).equals(underscoredName)) {
                        mappedFields.put(underscoredName, pd);
                    }
                }
            }

            return mappedFields;
        });

    }


    /**
     * Convert a name in camelCase to an underscored name in lower case.
     * Any upper case letters are converted to lower case with a preceding underscore.
     * @param name the original name
     * @return the converted name
     * @since 4.2
     * @see #lowerCaseName
     */
    private static String underscoreName(String name) {
        if (!StringUtils.hasLength(name)) {
            return "";
        }
        StringBuilder result = new StringBuilder();
        result.append(lowerCaseName(name.substring(0, 1)));
        for (int i = 1; i < name.length(); i++) {
            String s = name.substring(i, i + 1);
            String slc = lowerCaseName(s);
            if (!s.equals(slc)) {
                result.append("_").append(slc);
            }
            else {
                result.append(s);
            }
        }
        return result.toString();
    }

    /**
     * Convert the given name to lower case.
     * By default, conversions will happen within the US locale.
     * @param name the original name
     * @return the converted name
     * @since 4.2
     */
    private static String lowerCaseName(String name) {
        return name.toLowerCase(Locale.US);
    }

}

使用方法:

String time = ISO_LOCAL_DATE_TIME.format(LocalDateTime.now());

        ImmutableMap<String, Object> map =
                ImmutableMap.of("name", "AAA",
                                "age", 12,
                                "birthday", time);
        
        User user = EntityMapper.mapToEntity(map, User.class);
        
        System.out.println(user);
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342