OpenAPI Kotlin Generator
This generator is based on the OpenAPI 3.0 specification, and it is a new specification that is supposed to replace the Swagger 2.0 specification. It has some significant changes to enhance the spec definition and simply validate with only JSON schema. In my opinion, it is much easier to use, and the implementation is much simpler then Swagger 2.0. OpenAPI adds a number of features as well. The only issue I can see is the entire toolchains around Swagger 2.0 are not migrated to OpenAPI 3.0 yet, and we have to build our own openapi-parser for parsing and validation.
Input
Model
In light-rest-4j framework generator, the model that drives code generation is the OpenAPI 3.0 specification previously named Swagger specification. When editing it, it usually will be in YAML format with separate files for readability and flexibility. Before leverage it in the light-rest-4j framework, all YAML files need to be bundled to a single file in YAML or JSON format to be consumed by the framework and generator. Also, validation needs to be done to make sure that the openapi.yaml or openapi.json is valid against JSON schema of OpenAPI 3.0 specification.
Note: we only support OpenAPI 3.0 specification for Kotlin.
Swagger Editor - A online tool to create OpenAPI specification
OpenAPI Bundler - A command line tool to combine multiple yaml specifications into one
Config
Here is a reference table for the example config.json
below:
Field Name | Description |
---|---|
name | Used in generated prom.xml for project name Optionality: mandatory |
version | Used in generated pom.xml for project versionOptionality: mandatory |
groupId | Used in generated pom.xml for project groupId Optionality: mandatory |
artifactId | used in generated pom.xml for project artifactId Optionality: mandatory |
rootPackage | root package name for your project and it will normally be your domain plug project name. Optionality: optional |
handlerPackage | the Java package for all generated handlers. Optionality: mandatory |
modelPackage | the Java package for all generated models or POJOs. Optionality: mandatory |
overwriteHandler | controls if you want to overwrite handler when regenerating the same project into the same folder. Optionality: mandatory Recommendation: set to false if you only want to upgrade the framework to another minor version and don’t want to overwrite handlers |
overwriteHandlerTest | controls if you want to overwrite handler test cases. Optionality: mandatory |
overwriteModel | controls if you want to overwrite generated models. Optionality: mandatory Recommendation: set to false to prevent the model classes being overwritten |
generateModelOnly | controls whether you wish to generate only the model classes Optionality: optional Recommendation: to be used by teams consuming an API and who wish to generate the model classes only Default: false |
regenerateCodeOnly | controls whether you wish to regenerate only the model and handler classes, while skipping the underlying scripts, pom.xml and other files Optionality: optional Recommendation: to be used when there are changes in the model and teams wish to regenerate only artifacts affected by the change: model, handler classes, and handler.yml Default: false |
generateValuesYml | controls whether a values.yml is to be generated, with commonly changed values across test and production environments Default: false |
httpPort | the port number of Http listener if enableHttp is true Optionality: mandatory |
enableHttp | specify if the server listens to http port. Optionality: mandatory Recommendation: Http should be enabled in dev |
httpsPort | the port number of Https listener if enableHttps is true . Optionality: mandatory |
enableHttps | specify if the server listens to https port. Optionality: mandatory Recommendation: Https should be used in any official environment for security reason Note: when Https is enabled, Http will automatically be disabled |
enableHttp2 | specify if the server supports HTTP/2 connection. Optionality: mandatory Recommendation: Should always be set to true |
enableRegistry | control if built-in service registry/discovery is used Optionality: mandatory Note: Only necessary if running as standalone java -jar xxx |
enableParamDescription | decide if generate parameter description from specifications as annotation. Optionality: optional Default: true |
supportDb | control if db connection pool will be setup in service.yml and db dependencies are included in pom.xml Optionality: mandatory |
dbInfo | database connection pool configuration info Optionality: mandatory |
supportH2ForTest | if true , add H2 in pom.xml as test scope to support unit test with H2 database. Optionality: mandatory |
supportClient | if true , add com.networknt.client module to pom.xml to support service to service call. Optionality: mandatory |
skipHealthCheck | decides whether to enable the health check in the handler chain and expose the health check endpoint. Set to true to skip the wiring of the health check Optionality: optional Default: false |
skipServerInfo | decides whether to wire the server info in the handler chain and expose the server info endpoint. Set to true to skip the wiring of the server info retrieval Optionality: optional Default: false |
prometheusMetrics | decides whether to wire the Prometheus metrics collection handler in the handler chain. Set to true to skip the wiring of the Prometheus metrics collection handler Optionality: optional Default: false |
generateEnvVars | how environment-based variables should be generatedgeneratedgenerateEnvVars.generate:boolean whether the environment based variables should be generated. Default: false . If set to false , config files are copied to target folder (if different from source folder)If set to true , config values are re-written to environment based valuesgenerateEnvVars.skipArray: boolean whether Arrays in the config files should be re-written or not. This is considered false if not set.generateEnvVars.skipMap: boolean whether Maps in the config files should be re-written or not. This is considered false if not set.generateEnvVars.exclude: Array a list of files that should not be re-written |
{
"name": "petstore",
"version": "1.0.1",
"groupId": "com.networknt",
"artifactId": "petstore",
"rootPackage": "com.networknt.petstore",
"handlerPackage":"com.networknt.petstore.handler",
"modelPackage":"com.networknt.petstore.model",
"overwriteHandler": true,
"overwriteHandlerTest": true,
"overwriteModel": true,
"generateModelOnly": false,
"generateValuesYml": false,
"regenerateCodeOnly":false,
"httpPort": 8080,
"enableHttp": false,
"httpsPort": 8443,
"enableHttps": true,
"enableHttp2": true,
"enableRegistry": false,
"enableParamDescription": true,
"supportDb": true,
"dbInfo": {
"name": "mysql",
"driverClassName": "com.mysql.jdbc.Driver",
"jdbcUrl": "jdbc:mysql://mysqldb:3306/oauth2?useSSL=`false`",
"username": "root",
"password": "my-secret-pw"
},
"supportH2ForTest": false,
"supportClient": false,
"skipHealthCheck": false,
"skipServerInfo": false,
"prometheusMetrics": false,
"generateEnvVars": {
"generate": true,
"skipArray": true,
"skipMap": true,
"exclude": [
"handerl.yml",
"values.yml"
]
}
}
In most cases, developers will only update handlers, handler tests, and models in a generated project. Of course, you might need a different database for your project, and we have a database tutorial that can help you to further config Oracle and Postgres.
Given we have most of our model and config files in model-config repo, most generator input would come from the rest folder in model-config for the light-rest-4j framework.
Let’s clone the project to your workspace as we will need it in the following steps. I am using ~/networknt
as a workspace, but it can be anywhere in your home directory.
cd ~/networknt
git clone https://github.com/networknt/model-config.git
Usage
Java Command line
You can download or build the codegen-cli command line jar.
- YAML Model
The default format for OpenAPI 3.0 specification is YAML. Given we have test openapi.yaml
and config.json
in light-rest-4j/src/test/resources folder, the following command line will generate a RESTful API at /tmp/openapi-yaml
folder.
Working directory: light-codegen
cd ~/networknt/light-codegen
java -jar codegen-cli/target/codegen-cli.jar -f openapikotlin -o /tmp/openapi-yaml -m light-rest-4j/src/test/resources/openapi.yaml -c light-rest-4j/src/test/resources/config.json
After you run the above command, you can build and start the service:
cd /tmp/openapi-yaml
./gradlew clean build run
To test the service from another terminal:
curl http://localhost:8080/server/info
The above example use local OpenAPI specification and config file. Let’s try to use files from github.com:
Working directory: light-codegen
rm -rf /tmp/openapi-petstore
cd ~/networknt/light-codegen
java -jar codegen-cli/target/codegen-cli.jar -f openapikotlin -o /tmp/openapi-petstore -m https://raw.githubusercontent.com/networknt/model-config/master/rest/openapi/petstore/1.0.0/openapi.json -c https://raw.githubusercontent.com/networknt/model-config/master/rest/openapi/petstore/1.0.0/config.json
Please note that you need to use a raw URL when accessing GitHub files. The above command line will generate a petstore service in /tmp/openapi-petstore.
Given we have most of the model and config files in the model-config repo, most generator input would from the rest folder in model-config. Here is the example to generate petstore. Assuming model-config is in the same workspace as light-codegen.
Working directory: networknt
rm -rf /tmp/openapi-petstore
cd ~/networknt
java -jar light-codegen/codegen-cli/target/codegen-cli.jar -f openapikotlin -o /tmp/openapi-petstore -m model-config/rest/openapi/petstore/1.0.0/openapi.json -c model-config/rest/openapi/petstore/1.0.0/config.json
Docker Command Line
Above local build and command line utility works but it is very hard to use that in DevOps script. To make scripting easier, we have dockerized the command line utility.
The following command is using docker image to generate the code into /tmp/light-codegen/generated:
docker run -it -v ~/networknt/light-codegen/light-rest-4j/src/test/resources:/light-api/input -v /tmp/light-codegen:/light-api/out networknt/light-codegen -f openapikotlin -m /light-api/input/openapi.json -c /light-api/input/config.json -o /light-api/out/generated
On Linux environment, the generated code might belong to root:root and you need to change the owner to yourself before building it.
cd /tmp/light-codegen
sudo chown -R steve:steve generated
cd generated
./gradlew clean build run
To test it.
curl localhost:8080/v1/pets/111
Docker Scripting
You can use docker run command to call the generator, but it is very complicated for the parameters. To make things easier and friendlier to DevOps flow. Let’s create a script to call the command line from a docker image.
If you look at the docker run command you can see that we basically need one input folder for schema and config files and one output folder to generate code. Once these volumes are mapped to a local directory and with framework specified, it is easy to derive other files based on convention.
cd model-config
./generate.sh openapikotlin ~/networknt/model-config/rest/openapi/petstore/1.0.0 /tmp/petstore
Now you should have a project generated in /tmp/petstore/genereted
Codegen Site
You can generate single project or multiple projects from the site https://codegen.lightapi.net with your model and config files.