Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add lombok (or any) annotation to swagger generated class

I scavenged the internet but didn't find anything to solve this problem. Is it possible to add the lombok annotations in a swagger class UPON generation?

I have this swagger schema:

Product:
type: "object"
required:
  - idSeller
  - model
  - name
  - description
  - price
properties:
  id:
    type: string
  idSeller:
    type: string
  model:
    type: string
  name:
    type: string
  description:
    type: string
  price:
    type: number
    format: currency
    minimum: 0.01

Which generated this code:

@Validated
@javax.annotation.Generated(value = "io.swagger.codegen.languages.SpringCodegen", date = "2019-10-18T20:36:31.834-03:00")

public class Product   {
    @JsonProperty("id")
    private String id = null;

    @JsonProperty("idSeller")
    private String idSeller = null;

    //rest of the code ommited
} 

But I need it to generate this:

@Validated
@javax.annotation.Generated(value = "io.swagger.codegen.languages.SpringCodegen", date = "2019-10-18T20:36:31.834-03:00")

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Product   {
    @JsonProperty("id")
    private String id = null;

    @JsonProperty("idSeller")
    private String idSeller = null;

    //rest of the code ommited
}

With the lombok Data, Builder, NoArgsConstructor and AllArgsConstructor annotations.

Could you help me on this?

like image 997
Vanderson Assis Avatar asked Oct 19 '19 19:10

Vanderson Assis


1 Answers

What about

perl -pi -e 's/(?=^public class )/\@Data\n\@Builder\n\@NoArgsConstructor\n\@AllArgsConstructor\n/' *.java

? I guess, that's not what you expected, but you can integrate it into your build process and have a time-proof solution.

Actually, you'll need the imports, too, but that's equally simple.

like image 185
maaartinus Avatar answered Nov 09 '22 15:11

maaartinus