我有 pojo 类,如下所示。
public class Car {
private Engine engine;
private List<Wheel> wheelList;
}
我在“汽车”pojo 类中使用下面的 pojo 类作为参数。
public class Engine {
private int power;
private int type;
}
public class Wheel {
private int size;
private int type;
private int colour;
}
您能否帮助如何使用 java 8 lambda 或 lombok 编写构建器模式。