美文网首页
自定义工具类使用BeanUtil.copyProperties(

自定义工具类使用BeanUtil.copyProperties(

作者: King斌 | 来源:发表于2022-08-04 10:57 被阅读0次

定义工具类

1.创建 ListBeanUtils

import org.springframework.beans.BeanUtils;

import java.util.ArrayList;
import java.util.List;
import java.util.function.Supplier;

/**
 * List复制copyProperties工具类
 *
 * @author wangbin
 */
public class ListBeanUtils extends BeanUtils {

    public static <S, T> List<T> copyListProperties(List<S> sources, Supplier<T> target) {
        return copyListProperties(sources, target, null);
    }

    /**
     * @author Johnson
     * 使用场景:Entity、Bo、Vo层数据的复制,因为BeanUtils.copyProperties只能给目标对象的属性赋值,却不能在List集合下循环赋值,因此添加该方法
     * 如:List<AdminEntity> 赋值到 List<AdminVo> ,List<AdminVo>中的 AdminVo 属性都会被赋予到值
     * S: 数据源类 ,T: 目标类::new(eg: AdminVo::new)
     */
    public static <S, T> List<T> copyListProperties(List<S> sources, Supplier<T> target, ListBeanUtilsCallBack<S, T> callBack) {
        List<T> list = new ArrayList<>(sources.size());
        for (S source : sources) {
            T t = target.get();
            copyProperties(source, t);
            if (callBack != null) {
                // 回调
                callBack.callBack(source, t);
            }
            list.add(t);
        }
        return list;
    }

}

2.创建ListBeanUtilsCallBack

/**
 * List复制copyProperties工具类CallBack
 *
 * @author wangbin
 */
@FunctionalInterface
public interface ListBeanUtilsCallBack<S, T> {

    void callBack(S t, T s);

}

相关文章

网友评论

      本文标题:自定义工具类使用BeanUtil.copyProperties(

      本文链接:https://www.haomeiwen.com/subject/ujsywrtx.html