主要问题取决于如何在Swagger代码源(yaml)中生成构造函数?
例如,假设我要构造一个名为Cat的类。这在yaml招摇定义中看起来像这样:
Cat:
type: object
properties:
name: string
color: string
它的类就像
public class Cat {
String name;
String color;
public void Cat() {}
public void Cat(String name, String colour) {
this.name = name;
this.color= color;
}
}
我还想生成一个类似
的构造函数public Cat(Cat cat) {
this.name = cat.getName();
this.color = cat.getColor();
}
有可能吗?
谢谢!