集合数据拷贝,分页数据拷贝

1:定义回调接口

package cn.cloudwalk.dc.biz.common.config.bean;

/**
 * copy回调
 *
 * @param <S>
 * @param <T>
 */
@FunctionalInterface
public interface BeanUtilCallBack<S, T> {
    
    

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

2:集合拷贝

package cn.cloudwalk.dc.biz.common.config.bean;

import org.springframework.beans.BeanUtils;

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

public class BeanUtil extends BeanUtils {
    
    

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


    /**
     * 带回调函数的集合数据的拷贝(可自定义字段拷贝规则)
     *
     * @param sources:  数据源类
     * @param target:   目标类::new(eg: DTO::new)
     * @param callBack: 回调函数
     * @return
     */
    public static <S, T> List<T> copyList(List<S> sources, Supplier<T> target, BeanUtilCallBack<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;
    }
}

3.调用

List<Dto> list = BeanUtil.copyList(users, Dto::new);

猜你喜欢

转载自blog.csdn.net/weixin_44967200/article/details/114116227
今日推荐