25 Aralık 2020 Cuma

SpringDoc

Giriş
Açıklaması şöyle
SpringDoc is a library for Spring Boot applications that generates Open Api Schema automatically.
Örnek
Şöyle bir istek gönderelim
GET /person/{id}
Çıktı olarak şunu alırız
"PersonDTO": {
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    }
  }
}

Hiç yorum yok:

Yorum Gönder