Swagger

Man working at night coding and pointing on a screen with a pen

Adding Swagger to Quarkus

Reading Time: 2 minutes Introduction Open API or Swagger specification is the factual standard for creating REST APIs. Almost every developer expects to see some Swagger documentation when working with APIs or doing integration. In this blog, we will go through how to add Swagger to Quarkus application Add Open API dependency Here we need to add the quarkus-small rye-open API to the project, It will generate an OpenAPI dynamic schema Continue Reading

Finatra-swagger

Finatra-swagger: Making the api documentation awesome and easy

Reading Time: 3 minutes Apart from speed, high-performance, fault-tolerance and concurrency, one more most important feature for an api is a clean, precise, interactive and user friendly documentation. Documentation plays a very important role in a rest api. The interactive documentation makes api more easy and understandable. Finatra is fast, testable, Scala services built on Twitter-Server and Finagle, similarly Swagger is a well known api documentation framework. In this blog we are going Continue Reading

Document generation of Akka-HTTP using Swagger

Reading Time: 2 minutes Hello All,  In this blog we are using Swagger to generate document of Akka-HTTP. For Swagger you can get more information from  Introduction to Swagger . For Akka you can get more information from Introduction to Akka-Http You can find complete code here. build.sbt file of the project contains all dependency. SwaggerDocService.scala AkkaSwagger.Scala Get the Json in response by hitting localhost:8080/api-docs/swagger.json   You can get Continue Reading

Introduction to Swagger

Reading Time: < 1 minute Hello all, Knoldus organised a knolx session on the topic “Introduction to Swagger” on Friday, 28 October 2016. Swagger is a simple yet powerful representation of your RESTful API. With the largest ecosystem of API tooling on the planet, thousands of developers are supporting Swagger in almost every modern programming language and deployment environment.It specifies the format (URL, method, and representation) to describe REST web Continue Reading

Swagger With Play2

Reading Time: 5 minutes What is Swagger : Swagger is very powerful tool for REST API description and API documentation.Swagger API gives a Swagger GUI for humans to learn and test your API.It’s 100% open source.The goal of Swagger is to enable client and documentation systems to update at the same pace as the server. The documentation of methods, parameters, and models are tightly integrated into the server code, Continue Reading