SpingBoot之优雅的集合数据的拷贝

1、BeanUtil工具类

/**
 * 集合数据的拷贝
 * @param sources: 数据源类
 * @param target: 目标类::new(eg: UserVO::new)
 * @return
 */
public static <S, T> List<T> copyListProperties(List<S> sources, Supplier<T> target) {
   return copyListProperties(sources, target, null);
}


/**
 * 带回调函数的集合数据的拷贝(可自定义字段拷贝规则)
 * @param sources: 数据源类
 * @param target: 目标类::new(eg: UserVO::new)
 * @param callBack: 回调函数
 * @return
 */
public static <S, T> List<T> copyListProperties(List<S> sources, Supplier<T> target, BeanCopyUtilCallBack<S, T> callBack) {
   List<T> list = new ArrayList<>(sources.size());
   for (S source : sources) {
      T t = target.get();
      copyProperties(source, t);
      list.add(t);
      if (callBack != null) {
         // 回调
         callBack.callBack(source, t);
      }
   }
   return list;
}

2、BeanCopyUtilCallBack 

@FunctionalInterface
public interface BeanCopyUtilCallBack <S, T> {

    /**
     * 定义默认回调方法
     * @param t
     * @param s
     */
    void callBack(S t, T s);
}

 3、调用

List<aVo> aVo = BeanUtil.copyListProperties(bList,aVo::new);
原创文章 139 获赞 401 访问量 50万+

猜你喜欢

转载自blog.csdn.net/qq_31122833/article/details/105124638