如何使用Swagger代码生成Java中的副本构造函数

时间:2018-09-07 10:49:16

标签: java yaml swagger swagger-codegen

主要问题取决于如何在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();
}

有可能吗?

谢谢!

0 个答案:

没有答案