package com.biubiu.myboot.util;

import org.springframework.beans.BeanUtils;
import org.springframework.util.CollectionUtils;

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

/**
 * <p>
 * DtoCopyUtil Dto拷贝工具类
 * </p>
 *
 * @author biubiu
 * @date 2022/3/29 0:11
 */
public class DtoCopyUtil {

    private DtoCopyUtil() {
    }

    /**
     * 单个对象的拷贝
     *
     * @param src      源对象
     * @param supplier 泛型对象
     * @param <T>      泛型 T
     * @param <R>      泛型 R
     * @return 目标对象
     */
    public static <T, R> R copyFrom(T src, Supplier<R> supplier) {
        if (src == null) {
            return null;
        }
        R dst = supplier.get();

        BeanUtils.copyProperties(src, dst);
        return dst;
    }

    /**
     * list中对象的拷贝
     *
     * @param srcList  源list
     * @param supplier 泛型得实例
     * @param <T>      泛型 T
     * @param <R>      泛型 R
     * @return List<R>
     */
    public static <T, R> List<R> copyFrom(List<T> srcList, Supplier<R> supplier) {
        if (CollectionUtils.isEmpty(srcList)) {
            return new ArrayList<>();
        }

        List<R> destList = srcList.stream().map(src -> copyFrom(src, supplier)).collect(Collectors.toList());
        return destList;
    }

    /**
     * 单个对象的拷贝
     *
     * @param src      源对象
     * @param supplier 泛型对象
     * @param <T>      泛型 T
     * @param <R>      泛型 R
     * @return 目标对象
     */
    public static <T, R> R copyFrom(T src, R supplier) {
        if (src == null || supplier == null) {
            return null;
        }
        R dst = supplier;
        BeanUtils.copyProperties(src, dst);
        return dst;
    }

}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80