openapi-generator/README.md

530 lines
18 KiB
Markdown
Raw Normal View History

2014-09-22 23:44:01 +00:00
# Swagger Code Generator
2014-10-22 22:46:47 +00:00
[![Build Status](https://travis-ci.org/swagger-api/swagger-codegen.png)](https://travis-ci.org/swagger-api/swagger-codegen)
2015-10-09 16:14:27 +00:00
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.swagger/swagger-codegen-project/badge.svg?style=plastic)](https://maven-badges.herokuapp.com/maven-central/io.swagger/swagger-codegen-project)
2014-09-22 23:44:01 +00:00
## Overview
2014-09-26 20:56:12 +00:00
This is the swagger codegen project, which allows generation of client libraries automatically from a Swagger-compliant server.
2014-09-22 23:44:01 +00:00
2015-11-10 02:20:49 +00:00
Check out [Swagger-Spec](https://github.com/swagger-api/swagger-spec) for additional information about the Swagger project, including additional libraries with support for other languages and more.
2014-09-22 23:44:01 +00:00
# Table of contents
- [Swagger Code Generator](#swagger-code-generator)
- [Overview](#overview)
- [Table of Contents](#table-of-contents)
2015-10-01 21:26:24 +00:00
- Installation
- [Compatibility](#compatibility)
- [Prerequisites](#prerequisites)
2015-11-04 14:32:06 +00:00
- [OS X Users](#os-x-users)
- [Building](#building)
- [Docker](#docker)
- [Build and run](#build-and-run-using-docker)
- [Build a Node.js server stub](#build-a-nodejs-server-stub)
2015-11-05 09:12:51 +00:00
- [Homebrew](#homebrew)
2015-10-01 21:26:24 +00:00
- Generators
- [To generate a sample client library](#to-generate-a-sample-client-library)
- [Generating libraries from your server](#generating-libraries-from-your-server)
- [Modifying the client library format](#modifying-the-client-library-format)
- [Making your own codegen modules](#making-your-own-codegen-modules)
- [Where is Javascript???](#where-is-javascript)
- [Generating a client from local files](#generating-a-client-from-local-files)
2015-10-01 21:26:24 +00:00
- [Customizing the generator](#customizing-the-generator)
- [Validating your swagger spec](#validating-your-swagger-spec)
- [Generating dynamic html api documentation](#generating-dynamic-html-api-documentation)
- [Generating static html api documentation](#generating-static-html-api-documentation)
- [To build a server stub](#to-build-a-server-stub)
2015-10-31 15:17:58 +00:00
- [Node.js](#nodejs)
- [PHP Silex](#php-silex)
2015-11-21 16:06:12 +00:00
- [Python Flask (Connexion)](#python-flask-connexion)
2015-10-31 15:17:58 +00:00
- [Ruby Sinatra](#ruby-sinatra)
- [Scala Scalatra](#scala-scalatra)
- [Java JAX-RS](#java-jax-rs)
- [Java Spring MVC](#java-spring-mvc)
2015-10-01 21:26:24 +00:00
- [To build the codegen library](#to-build-the-codegen-library)
2015-10-31 16:02:08 +00:00
- [Online Generators](#online-generators)
2015-11-04 14:32:06 +00:00
- [Guidelines for Contribution](https://github.com/swagger-api/swagger-codegen/wiki/Guidelines-for-Contribution)
- [License](#license)
2014-09-22 23:44:01 +00:00
2015-05-17 05:05:44 +00:00
## Compatibility
2014-09-22 23:44:01 +00:00
The Swagger Specification has undergone 3 revisions since initial creation in 2010. The swagger-codegen project has the following compatibilies with the swagger specification:
2015-08-24 07:37:23 +00:00
Swagger Codegen Version | Release Date | Swagger Spec compatibility | Notes
-------------------------- | ------------ | -------------------------- | -----
2015-10-26 02:31:36 +00:00
2.1.5-SNAPSHOT | | 1.0, 1.1, 1.2, 2.0 | [master](https://github.com/swagger-api/swagger-codegen)
2015-10-26 03:59:52 +00:00
2.1.4 (**current stable**) | 2015-10-25 | 1.0, 1.1, 1.2, 2.0 | [tag v2.1.4](https://github.com/swagger-api/swagger-codegen/tree/v2.1.4)
2015-08-24 07:37:23 +00:00
2.0.17 | 2014-08-22 | 1.1, 1.2 | [tag v2.0.17](https://github.com/swagger-api/swagger-codegen/tree/v2.0.17)
1.0.4 | 2012-04-12 | 1.0, 1.1 | [tag v1.0.4](https://github.com/swagger-api/swagger-codegen/tree/swagger-codegen_2.9.1-1.1)
2014-09-22 23:44:01 +00:00
### Prerequisites
You need the following installed and available in your $PATH:
2015-01-07 18:40:16 +00:00
* [Java 7](http://java.oracle.com)
2014-09-22 23:44:01 +00:00
* [Apache maven 3.0.3 or greater](http://maven.apache.org/)
2015-11-10 02:20:49 +00:00
2015-04-18 19:41:18 +00:00
#### OS X Users
Don't forget to install Java 7. You probably have 1.6 or 1.8.
2015-11-05 14:40:05 +00:00
Export JAVA_HOME in order to use the supported Java version:
2015-04-18 19:41:18 +00:00
```
export JAVA_HOME=`/usr/libexec/java_home -v 1.7`
export PATH=${JAVA_HOME}/bin:$PATH
```
2015-11-04 14:32:06 +00:00
### Building
2014-09-22 23:44:01 +00:00
After cloning the project, you can build it from source with this command:
```
mvn package
```
2015-11-04 14:32:06 +00:00
### Docker
#### Build and run using docker
```
git clone https://github.com/swagger-api/swagger-codegen
cd swagger-codegen
./run-in-docker.sh mvn package
```
#### Build a Node.js server stub
```
./run-in-docker.sh generate \
-i http://petstore.swagger.io/v2/swagger.json \
-l nodejs \
-o samples/server/petstore/nodejs
```
2015-11-05 09:12:51 +00:00
### Homebrew
To install, run `brew install swagger-codegen`
Here is an example usage:
```
swagger-codegen generate -i http://petstore.swagger.io/v2/swagger.json -l ruby -o /tmp/test/
```
2014-09-22 23:44:01 +00:00
### To generate a sample client library
2015-02-17 05:03:36 +00:00
You can build a client against the swagger sample [petstore](http://petstore.swagger.io) API as follows:
2014-09-22 23:44:01 +00:00
```
2014-09-26 20:56:12 +00:00
./bin/java-petstore.sh
2014-09-22 23:44:01 +00:00
```
2014-09-26 20:56:12 +00:00
This will run the generator with this command:
2014-09-22 23:44:01 +00:00
```
2015-03-25 19:11:40 +00:00
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
2015-02-13 06:32:00 +00:00
-i http://petstore.swagger.io/v2/swagger.json \
2014-09-26 20:56:12 +00:00
-l java \
-o samples/client/petstore/java
2014-09-22 23:44:01 +00:00
```
2015-11-05 14:40:05 +00:00
with a number of options. You can get the options with the `help generate` command:
2014-09-22 23:44:01 +00:00
```
NAME
swagger generate - Generate code with chosen lang
SYNOPSIS
swagger generate [(-a <authorization> | --auth <authorization>)]
[(-c <configuration file> | --config <configuration file>)]
[-D <system properties>]
(-i <spec file> | --input-spec <spec file>)
(-l <language> | --lang <language>)
[(-o <output directory> | --output <output directory>)]
[(-t <template directory> | --template-dir <template directory>)]
[(-v | --verbose)]
[(-s | --skip-overwrite)]
OPTIONS
-a <authorization>, --auth <authorization>
adds authorization headers when fetching the swagger definitions
remotely. Pass in a URL-encoded string of name:header with a comma
separating multiple values
-c <configuration file>, --config <configuration file>
Path to json configuration file. File content should be in a json
format {"optionKey":"optionValue", "optionKey1":"optionValue1"...}
Supported options can be different for each language. Run
config-help -l {lang} command for language specific config options.
-D <system properties>
sets specified system properties in the format of
name=value,name=value
-i <spec file>, --input-spec <spec file>
location of the swagger spec, as URL or file (required)
-l <language>, --lang <language>
client language to generate (maybe class name in classpath,
required)
-o <output directory>, --output <output directory>
where to write the generated files (current dir by default)
-t <template directory>, --template-dir <template directory>
folder containing the template files
-v, --verbose
verbose mode
2015-11-10 02:20:49 +00:00
-s , --skip-overwrite
2015-11-10 02:20:49 +00:00
specifies if the existing files should be overwritten during
the generation
```
2014-09-22 23:44:01 +00:00
2014-09-26 20:56:12 +00:00
You can then compile and run the client, as well as unit tests against it:
2014-09-22 23:44:01 +00:00
```
2014-09-26 20:56:12 +00:00
cd samples/client/petstore/java
mvn package
2014-09-22 23:44:01 +00:00
```
2014-09-26 20:56:12 +00:00
Other languages have petstore samples, too:
2014-09-22 23:44:01 +00:00
```
2014-09-26 21:21:43 +00:00
./bin/android-petstore.sh
2014-09-26 20:56:12 +00:00
./bin/java-petstore.sh
./bin/objc-petstore.sh
2014-09-22 23:44:01 +00:00
```
2014-09-26 20:56:12 +00:00
### Generating libraries from your server
It's just as easy--just use the `-i` flag to point to either a server or file.
2014-09-22 23:44:01 +00:00
### Modifying the client library format
2014-09-26 20:56:12 +00:00
Don't like the default swagger client syntax? Want a different language supported? No problem! Swagger codegen processes mustache templates with the [jmustache](https://github.com/samskivert/jmustache) engine. You can modify our templates or make your own.
2014-09-22 23:44:01 +00:00
You can look at `modules/swagger-codegen/src/main/resources/${your-language}` for examples. To make your own templates, create your own files and use the `-t` flag to specify your template folder. It actually is that easy.
2014-09-22 23:44:01 +00:00
### Making your own codegen modules
If you're starting a project with a new language and don't see what you need, swagger-codegen can help you create a project to generate your own libraries:
```
2015-10-31 15:35:14 +00:00
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar meta \
-o output/myLibrary -n myClientCodegen -p com.my.company.codegen
```
This will write, in the folder `output/myLibrary`, all the files you need to get started, including a README.md. Once modified and compiled, you can load your library with the codegen and generate clients with your own, custom-rolled logic.
2014-09-22 23:44:01 +00:00
### Where is Javascript???
2014-10-22 22:46:47 +00:00
See our [javascript library](http://github.com/swagger-api/swagger-js)--it's completely dynamic and doesn't require
2014-09-22 23:44:01 +00:00
static code generation.
There is a third-party component called [swagger-js-codegen](https://github.com/wcandillon/swagger-js-codegen) that can generate angularjs or nodejs source code from a swagger specification.
### Generating a client from local files
2014-09-22 23:44:01 +00:00
If you don't want to call your server, you can save the swagger spec files into a directory and pass an argument
to the code generator like this:
```
2015-02-17 04:53:26 +00:00
-i ./modules/swagger-codegen/src/test/resources/2_0/petstore.json
2014-09-22 23:44:01 +00:00
```
2015-01-07 18:40:16 +00:00
Great for creating libraries on your ci server, from the [Swagger Editor](http://editor.swagger.io)... or while coding on an airplane.
2014-09-22 23:44:01 +00:00
2015-10-22 22:34:20 +00:00
### Selective generation
You may not want to generate *all* models in your project. Likewise you may want just one or two apis to be written. If that's the case, you can use system properties to control the output:
The default is generate *everything* supported by the specific library. Once you enable a feature, it will restrict the contents generated:
```
# generate only models
java -Dmodels {opts}
# generate only apis
java -Dapis {opts}
# generate only supporting files
java -DsupportingFiles
# generate models and supporting files
java -Dmodels -DsupportingFiles
```
To control the specific files being generated, you can pass a CSV list of what you want:
```
# generate the User and Pet models only
-Dmodels=User,Pet
# generate the User model and the supportingFile `StringUtil.java`:
-Dmodels=User -DsupportingFiles=StringUtil.java
```
When using selective generation, _only_ the templates needed for the specific generation will be used.
2014-09-30 13:11:51 +00:00
### Customizing the generator
There are different aspects of customizing the code generator beyond just creating or modifying templates. Each language has a supporting configuration file to handle different type mappings, etc:
```
2015-06-07 06:43:34 +00:00
$ ls -1 modules/swagger-codegen/src/main/java/io/swagger/codegen/languages/
2015-08-24 07:37:23 +00:00
AbstractTypeScriptClientCodegen.java
2015-06-08 23:07:31 +00:00
AkkaScalaClientCodegen.java
2014-09-30 13:11:51 +00:00
AndroidClientCodegen.java
2015-04-06 14:00:16 +00:00
AsyncScalaClientCodegen.java
CSharpClientCodegen.java
2015-11-21 16:06:12 +00:00
ClojureClientCodegen.java
2015-08-24 07:37:23 +00:00
CsharpDotNet2ClientCodegen.java
2015-10-06 08:13:06 +00:00
DartClientCodegen.java
FlashClientCodegen.java
2015-11-21 16:06:12 +00:00
FlaskConnexionCodegen.java
2014-09-30 13:11:51 +00:00
JavaClientCodegen.java
2015-08-24 07:37:23 +00:00
JavaInflectorServerCodegen.java
2014-09-30 13:11:51 +00:00
JaxRSServerCodegen.java
2015-02-17 04:53:26 +00:00
NodeJSServerCodegen.java
2014-09-30 13:11:51 +00:00
ObjcClientCodegen.java
2015-05-19 13:15:09 +00:00
PerlClientCodegen.java
2015-02-17 04:53:26 +00:00
PhpClientCodegen.java
PythonClientCodegen.java
2015-05-19 13:15:09 +00:00
Qt5CPPGenerator.java
2015-04-06 14:00:16 +00:00
RubyClientCodegen.java
2015-02-17 04:53:26 +00:00
ScalaClientCodegen.java
ScalatraServerCodegen.java
2015-08-24 07:37:23 +00:00
SilexServerCodegen.java
SinatraServerCodegen.java
2015-04-06 14:00:16 +00:00
SpringMVCServerCodegen.java
2014-09-30 13:11:51 +00:00
StaticDocCodegen.java
2015-02-17 04:53:26 +00:00
StaticHtmlGenerator.java
SwaggerGenerator.java
2015-04-06 14:00:16 +00:00
SwaggerYamlGenerator.java
2015-06-27 12:04:01 +00:00
SwiftCodegen.java
2015-02-17 04:53:26 +00:00
TizenClientCodegen.java
2015-08-24 07:37:23 +00:00
TypeScriptAngularClientCodegen.java
TypeScriptNodeClientCodegen.java
2014-09-30 13:11:51 +00:00
```
Each of these files creates reasonable defaults so you can get running quickly. But if you want to configure package names, prefixes, model folders, etc. you can use a json config file to pass the values.
```
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
-i http://petstore.swagger.io/v2/swagger.json \
-l java \
-o samples/client/petstore/java \
-c path/to/config.json
```
2015-11-18 06:17:33 +00:00
Supported config options can be different per language. Running `config-help -l {lang}` will show available options. **These options are applied
by passing them with `-D{optionName}={optionValue}**.
```
2015-06-12 08:12:54 +00:00
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar config-help -l java
```
Output
```
CONFIG OPTIONS
modelPackage
package for generated models
apiPackage
package for generated api classes
2015-10-12 09:34:07 +00:00
sortParamsByRequiredFlag
Sort method arguments to place required parameters before optional parameters. Default: true
invokerPackage
root package for generated code
groupId
groupId in generated pom.xml
artifactId
artifactId in generated pom.xml
artifactVersion
artifact version in generated pom.xml
sourceFolder
source folder for generated code
2015-10-12 09:34:07 +00:00
localVariablePrefix
prefix for generated code members and local variables
serializableModel
boolean - toggle "implements Serializable" for generated models
library
library template (sub-template) to use:
<default> - HTTP client: Jersey client 1.18. JSON processing: Jackson 2.4.2
jersey2 - HTTP client: Jersey client 2.6
okhttp-gson - HTTP client: OkHttp 2.4.0. JSON processing: Gson 2.3.1
retrofit - HTTP client: OkHttp 2.4.0. JSON processing: Gson 2.3.1 (Retrofit 1.9.0)
2015-11-10 02:20:49 +00:00
retrofit2 - HTTP client: OkHttp 2.5.0. JSON processing: Gson 2.4 (Retrofit 2.0.0-beta2)
```
Your config file for java can look like
```
{
"groupId":"com.my.company",
"artifactId":"MyClent",
"artifactVersion":"1.2.0"
}
```
For all the unspecified options default values will be used.
2014-09-30 13:11:51 +00:00
2015-11-05 14:40:05 +00:00
Another way to override default options is to extend the config class for the specific language.
2014-09-30 13:11:51 +00:00
To change, for example, the prefix for the Objective-C generated files, simply subclass the ObjcClientCodegen.java:
```
package com.mycompany.swagger.codegen;
2015-06-07 06:43:34 +00:00
import io.swagger.codegen.languages.*;
2014-09-30 13:11:51 +00:00
public class MyObjcCodegen extends ObjcClientCodegen {
static {
PREFIX = "HELO";
}
}
```
and specify the `classname` when running the generator:
```
2015-02-26 20:42:41 +00:00
-l com.mycompany.swagger.codegen.MyObjcCodegen
2014-09-30 13:11:51 +00:00
```
Your subclass will now be loaded and overrides the `PREFIX` value in the superclass.
2014-09-22 23:44:01 +00:00
### Validating your swagger spec
2014-09-26 20:56:12 +00:00
You have options. The easiest is to use our [online validator](https://github.com/swagger-api/validator-badge) which not only will let you validate your spec, but with the debug flag, you can see what's wrong with your spec. For example:
2014-09-22 23:44:01 +00:00
2015-02-13 06:32:00 +00:00
http://online.swagger.io/validator/debug?url=http://petstore.swagger.io/v2/swagger.json
2014-09-22 23:44:01 +00:00
2014-12-03 08:55:25 +00:00
### Generating dynamic html api documentation
To do so, just use the `-l dynamic-html` flag when reading a spec file. This creates HTML documentation that is available as a single-page application with AJAX. To view the documentation:
```
2015-02-17 04:53:26 +00:00
cd samples/dynamic-html/
2014-12-03 08:55:25 +00:00
npm install
node .
```
Which launches a node.js server so the AJAX calls have a place to go.
### Generating static html api documentation
To do so, just use the `-l html` flag when reading a spec file. This creates a single, simple HTML file with embedded css so you can ship it as an email attachment, or load it from your filesystem:
```
2015-02-17 04:53:26 +00:00
cd samples/html/
2014-12-03 08:55:25 +00:00
open index.html
```
2014-09-22 23:44:01 +00:00
### To build a server stub
You can also use the codegen to generate a server for a couple different frameworks. Take a look here:
2015-10-31 15:17:58 +00:00
### Node.js
2015-01-14 19:16:06 +00:00
```
2015-03-25 19:11:40 +00:00
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
2015-02-13 06:32:00 +00:00
-i http://petstore.swagger.io/v2/swagger.json \
2015-01-14 19:16:06 +00:00
-l nodejs \
-o samples/server/petstore/nodejs
```
2014-09-22 23:44:01 +00:00
2015-10-31 15:17:58 +00:00
### PHP Silex
2014-09-22 23:44:01 +00:00
2015-10-31 15:17:58 +00:00
```
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
-i http://petstore.swagger.io/v2/swagger.json \
-l silex \
-o samples/server/petstore/silex
```
2015-11-21 16:06:12 +00:00
### Python Flask (Connexion)
```
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
-i http://petstore.swagger.io/v2/swagger.json \
-l flaskConnexion \
-o samples/server/petstore/flaskConnexion
```
2015-10-31 15:17:58 +00:00
### Ruby Sinatra
2014-09-26 20:59:07 +00:00
2015-10-31 15:17:58 +00:00
```
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
-i http://petstore.swagger.io/v2/swagger.json \
-l sinatra \
-o samples/server/petstore/sinatra
```
### Scala Scalatra
2015-01-14 19:16:06 +00:00
```
2015-03-25 19:11:40 +00:00
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
2015-02-13 06:32:00 +00:00
-i http://petstore.swagger.io/v2/swagger.json \
2015-01-14 19:16:06 +00:00
-l scalatra \
-o samples/server/petstore/scalatra
```
2014-09-22 23:44:01 +00:00
2015-10-31 15:17:58 +00:00
### Java JAX-RS
2014-09-22 23:44:01 +00:00
2015-01-14 19:16:06 +00:00
```
2015-03-25 19:11:40 +00:00
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
2015-02-13 06:32:00 +00:00
-i http://petstore.swagger.io/v2/swagger.json \
2015-01-14 19:16:06 +00:00
-l jaxrs \
-o samples/server/petstore/jaxrs
```
2014-09-22 23:44:01 +00:00
2015-10-31 15:17:58 +00:00
### Java Spring MVC
2015-04-06 14:00:16 +00:00
```
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
-i http://petstore.swagger.io/v2/swagger.json \
-l spring-mvc \
-o samples/server/petstore/spring-mvc
```
2015-10-31 15:17:58 +00:00
2014-09-22 23:44:01 +00:00
### To build the codegen library
This will create the swagger-codegen library from source.
```
2014-09-26 20:56:12 +00:00
mvn package
2014-09-22 23:44:01 +00:00
```
2014-09-26 20:56:12 +00:00
Note! The templates are included in the library generated. If you want to modify the templates, you'll need to either repackage the library OR specify a path to your scripts
2014-09-22 23:44:01 +00:00
2015-10-31 16:02:08 +00:00
## Online generators
2015-11-05 14:40:05 +00:00
One can also generate API client or server using the online generators (https://generator.swagger.io)
2015-10-31 16:02:08 +00:00
For example, to generate Ruby API client, simply send the following HTTP request using curl:
```
curl -X POST -H "content-type:application/json" -d '{"swaggerUrl":"http://petstore.swagger.io/v2/swagger.json"}' https://generator.swagger.io/api/gen/clients/ruby
```
Then you will receieve a JSON response with the URL to download the zipped code.
2015-11-04 14:32:06 +00:00
Guidelines for Contribution
---------------------------
Please refer to this [page](https://github.com/swagger-api/swagger-codegen/wiki/Guidelines-for-Contribution)
2014-09-22 23:44:01 +00:00
License
-------
2015-05-29 12:52:48 +00:00
Copyright 2015 SmartBear Software
2014-09-22 23:44:01 +00:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.