码迷,mamicode.com
首页 > 其他好文 > 详细

Bean拷贝

时间:2019-03-12 18:17:23      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:ret   catch   anti   static   for   instant   null   stat   param   

 

相当于C#的AutoMapper

public class CloneUtils {
    /**
     * 拷贝对象
     * @param source
     * @param classType
     * @return
     */
    public static <T, E> E clone(T source, Class<E> classType) {

        if (source == null) {
            return null;
        }
        E targetInstance;
        try {
            targetInstance = classType.newInstance();
        } catch (InstantiationException e) {
            throw new RuntimeException(e);
        } catch (IllegalAccessException e) {
            throw new RuntimeException(e);
        }
        BeanUtils.copyProperties(source, targetInstance);
        return targetInstance;
    }

    /**
     * 拷贝数组对象
     * @param sourceList
     * @param classType
     * @return
     */
    public static <T, E> List<E> batchClone(List<T> sourceList, Class<E> classType) {
        if (sourceList == null) {
            return null;
        }
        List<E> result = new ArrayList<>();
        int size = sourceList.size();
        for (int i = 0; i < size; i++) {
            result.add(clone(sourceList.get(i), classType));
        }
        return result;
    }
}

 

Bean拷贝

标签:ret   catch   anti   static   for   instant   null   stat   param   

原文地址:https://www.cnblogs.com/fengqiaoyebo/p/10518237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!