OpenAPI
Install and generate source code for OpenAPI specs using OpenAPI Generator CLI
After you define API specs using OpenAPI, to implement these APIs using the programming language you are working with, you can use the Open API Generator CLI tool at https://github.com/OpenAPITools/openapi-generator to generate source code for that language. All we have left to do is add… Read More
RESTful API documentation with springdoc-openapi library in Spring Boot application
In the previous tutorial, I showed you how to use the Springfox library to create RESTful API documentation according to OpenAPI specification in Spring Boot applications. But Springfox has been out of date for a long time and the springdoc-openapi library is updated continuously and… Read More
Generate API contract using OpenAPI Generator Maven plugin
After defining API specs with RAML, we can use Spring MVC-RAML Maven plugin to generate API contract. With API specs using OpenAPI Specification, you can use OpenAPI Generator Maven plugin to do this. How is it in detail? We will find out together in this… Read More
Basic definition of RESTful Web Service API specs using OpenAPI Specification
I showed you how to define RESTful Web Service API specs using RAML. Another way to do this is to use the OpenAPI Specification. How is it in detail? In this tutorial, we will learn together how to define RESTful Web Service API specs using… Read More
