Java 对象复制工具类

Java 对象复制工具类

import com.alibaba.fastjson.JSON;
import lombok.extern.slf4j.Slf4j;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;

import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * @ Author:aqrlmy
 */
@SuppressWarnings(value = "unused")
@Slf4j
public class BeanUtils {


    /**
     * 将List中的对象拷贝到目标对象的List中(标准Bean)
     *
     * @param sourceList 源List<T>
     * @param targetCls  目标对象类型
     * @param <T>        源类型
     * @param <R>        目标类型
     * @return 目标类型List数组
     */
    public static <T, R> List<R> beanCopyPropertiesForList(List<T> sourceList, Class<R> targetCls) {
        if (sourceList == null) {
            return null;
        }
        Assert.notNull(targetCls, "target class can not null");
        List<R> targetList = new ArrayList<>();
        if (!sourceList.isEmpty()) {
            for (T source : sourceList) {
                targetList.add(beanCopyProperties(source, targetCls));
            }
        }
        return targetList;
    }


    /**
     * 属性值拷贝(标准Bean)
     *
     * @param source    源对象
     * @param targetCls 目标对象类
     * @Return 拷贝目标类的实体
     */
    public static <R> R beanCopyProperties(Object source, Class<R> targetCls) {
        try {
            if (source == null) {
                return null;
            }
            Assert.notNull(targetCls, "target class can not null");
            R target = targetCls.getDeclaredConstructor().newInstance();
            org.springframework.beans.BeanUtils.copyProperties(source, target);
            return target;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return null;
        }
    }

    public static <R> R copyProperties(Object source, Class<R> targetCls) {
        return beanCopyProperties(source, targetCls);
    }

    /**
     * 属性值拷贝(标准Bean)
     *
     * @param source 源对象
     * @param target 目标对象
     * @Return 拷贝目标类的实体
     */
    public static <R> R copyProperties(Object source, R target) {
        try {
            if (source == null) {
                return null;
            }
            Assert.notNull(target, "target class can not null");
            org.springframework.beans.BeanUtils.copyProperties(source, target);
            return target;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return null;
        }
    }

    /**
     * 属性值拷贝(标准Bean)
     *
     * @param source    源对象
     * @param targetCls 目标对象类
     * @return 拷贝目标类的实体
     */
    public static <R> R beanCopyProperties(Object source, Class<R> targetCls,
                                           String ignoreProperties) {
        try {
            if (source == null) {
                return null;
            }
            Assert.notNull(targetCls, "target class can not null");
            R target = targetCls.getDeclaredConstructor().newInstance();
            if (StringUtils.isEmpty(ignoreProperties)) {
                org.springframework.beans.BeanUtils.copyProperties(source, target);
            } else {
                org.springframework.beans.BeanUtils.copyProperties(source, target, ignoreProperties.split(","));
            }
            return target;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return null;
        }
    }

    /**
     * bean 对象拷贝
     */
    public static <R> R beanCopyProperties(Object source, Class<R> target, R defVal) {
        return beanCopyProperties(source, target, defVal, null);
    }

    /**
     * bean 对象拷贝
     *
     * @param source           原始对象
     * @param target           目标对象类
     * @param defVal           默认值生成器: 原始对象为null, 返回该值
     * @param ignoreProperties 拷贝时忽略字段名, 忽略多个字段使用逗号分割
     * @param <R>              目标类
     * @return 生成实体
     */
    public static <R> R beanCopyProperties(Object source, Class<R> target, R defVal,
                                           String ignoreProperties) {
        if (source == null) {
            return defVal;
        }
        return beanCopyProperties(source, target, ignoreProperties);
    }

    /**
     * 属性值拷贝(标准Bean)
     *
     * @param source 源对象
     * @param target 目标对象
     * @return 拷贝目标类的实体
     */
    public static void beanCopyProperties(Object source, Object target, String ignoreProperties) {
        try {
            Assert.notNull(target, "target can not null");
            if (source == null) {
                return;
            }
            if (StringUtils.isEmpty(ignoreProperties)) {
                org.springframework.beans.BeanUtils.copyProperties(source, target);
            } else {
                org.springframework.beans.BeanUtils.copyProperties(source, target, ignoreProperties.split(","));
            }
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
    }

    /**
     * Get value or default value if it is null.
     *
     * @param value        原值
     * @param defaultValue 默认值
     * @param <T>          类型
     * @return 结果
     */
    public static <T> T valueOrDefault(T value, T defaultValue) {
        return value == null ? defaultValue : value;
    }

    /**
     * Return the named getter method on the bean or null if not found.
     *
     * @return the named getter method
     */
    private static Method getMethod(Object bean, String propertyName) {
        StringBuilder sb = new StringBuilder("get")
                .append(Character.toUpperCase(propertyName.charAt(0)));
        if (propertyName.length() > 1) {
            sb.append(propertyName.substring(1));
        }
        String getterName = sb.toString();
        for (Method m : bean.getClass().getMethods()) {
            if (getterName.equals(m.getName()) && m.getParameterTypes().length == 0) {
                return m;
            }
        }
        return null;
    }

    /**
     * Return the named field on the bean or null if not found.
     *
     * @return the named field
     */
    private static Field getField(Object bean, String propertyName) {
        for (Field f : bean.getClass().getDeclaredFields()) {
            if (propertyName.equals(f.getName())) {
                return f;
            }
        }
        return null;
    }

    private static void validateArgs(Object bean, String propertyName) {
        if (bean == null) {
            throw new IllegalArgumentException("bean is null");
        }
        if (propertyName == null) {
            throw new IllegalArgumentException("propertyName is null");
        }
        if (propertyName.trim().length() == 0) {
            throw new IllegalArgumentException("propertyName is empty");
        }
    }

    /**
     * Retrieve a named bean property value.
     *
     * @param bean bean
     * @return the property value
     */
    public static Object getBeanProperty(Object bean, String propertyName) {
        validateArgs(bean, propertyName);

        // try getters first
        Method getter = getMethod(bean, propertyName);
        if (getter != null) {
            try {
                return getter.invoke(bean);
            } catch (Exception ignored) {
            }
        }

        Field field = getField(bean, propertyName);
        if (field != null) {
            try {
                field.setAccessible(true);
                return field.get(bean);
            } catch (Exception ignored) {
            }
        }

        return null;
    }

    /**
     * Retrieve a Long bean property value.
     *
     * @param bean bean
     * @return long value
     */
    public static long getLongBeanProperty(final Object bean, final String propertyName)
            throws NoSuchFieldException {
        validateArgs(bean, propertyName);
        Object o = getBeanProperty(bean, propertyName);
        if (o == null) {
            throw new NoSuchFieldException(propertyName);
        } else if (!(o instanceof Number)) {
            throw new IllegalArgumentException(propertyName + " not an Number");
        }
        return ((Number) o).longValue();
    }

    public static <R> R mapToClass(Map<String, ?> params, Class<R> targetCls) {
        Assert.notEmpty(params, "params can not empty");
        try {
            return JSON.parseObject(JSON.toJSONString(params), targetCls);
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return null;
        }
    }

    public static Map<String, Object> beanToMap(Object obj) {
        Assert.notNull(obj, "params can not empty");
        Map<String, Object> map = new HashMap<>();
        Class<?> clazz = obj.getClass();
        try {
            for (Field field : clazz.getDeclaredFields()) {
                field.setAccessible(true);
                String fieldName = field.getName();
                Object value = field.get(obj);
                map.put(fieldName, value);
            }
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            return null;
        }
        return map;
    }


}

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值