Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Created December 18, 2024 23:16
Show Gist options
  • Save jrichardsz/957aa3cfc387f955ab1065ebe27111be to your computer and use it in GitHub Desktop.
Save jrichardsz/957aa3cfc387f955ab1065ebe27111be to your computer and use it in GitHub Desktop.
swagger implementations tips

https://medium.com/@stefan.paladuta17/spring-boot-using-swagger-at-maximum-all-annotations-that-we-should-know-about-in-springfox-e419e575b078

Request field description

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

@ApiModel(description = "Model retrieved from library system")
public class Book {
  
  @ApiModelProperty(notes = "Title of the book", example = "Inside of this hell")
  private String title;
 
  @ApiModelProperty(notes = "Author of the book", example = "Stefan P.")
  private String author;
  
  public String getTitle() {
    return title;
  }
  public void setTitle(String title) {
    this.title = title;
  }
  public String getAuthor() {
    return author;
  }
  public void setAuthor(String author) {
    this.author = author;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment