openapi-generator/README.md

949 lines
36 KiB
Markdown
Raw Normal View History

2014-09-22 23:44:01 +00:00
# Swagger Code Generator
[![Build Status](https://img.shields.io/travis/swagger-api/swagger-codegen.svg?label=Petstore%20Integration%20Test)](https://travis-ci.org/swagger-api/swagger-codegen)
[![Run Status](https://img.shields.io/shippable/5782588a3be4f4faa56c5bea.svg?label=Mustache%20Template%20Test)](https://app.shippable.com/projects/5782588a3be4f4faa56c5bea)
[![Windows Test](https://ci.appveyor.com/api/projects/status/github/swagger-api/swagger-codegen?branch=master&svg=true&passingText=Windows%20Test%20-%20OK&failingText=Windows%20Test%20-%20Fails)](https://ci.appveyor.com/project/WilliamCheng/swagger-codegen-wh2wu)
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)
2016-01-23 14:22:50 +00:00
[![PR Stats](http://issuestats.com/github/swagger-api/swagger-codegen/badge/pr)](http://issuestats.com/github/swagger-api/swagger-codegen) [![Issue Stats](http://issuestats.com/github/swagger-api/swagger-codegen/badge/issue)](http://issuestats.com/github/swagger-api/swagger-codegen)
2014-09-22 23:44:01 +00:00
2015-12-07 08:58:51 +00:00
:star::star::star: If you would like to contribute, please refer to [guidelines](https://github.com/swagger-api/swagger-codegen/blob/master/CONTRIBUTING.md) and a list of [open tasks](https://github.com/swagger-api/swagger-codegen/issues?q=is%3Aopen+is%3Aissue+label%3A%22Need+community+contribution%22).:star::star::star:
2016-04-13 07:57:02 +00:00
:notebook_with_decorative_cover: For more information, please refer to the [Wiki page](https://github.com/swagger-api/swagger-codegen/wiki) and [FAQ](https://github.com/swagger-api/swagger-codegen/wiki/FAQ) :notebook_with_decorative_cover:
2016-06-28 05:22:48 +00:00
:warning: If the OpenAPI/Swagger spec is obtained from an untrusted source, please make sure you've reviewed the spec before using Swagger Codegen to generate the API client, server stub or documentation as [code injection](https://en.wikipedia.org/wiki/Code_injection) may occur :warning:
2014-09-22 23:44:01 +00:00
## Overview
2016-07-06 22:00:00 +00:00
This is the swagger codegen project, which allows generation of API client libraries, server stubs and documentation automatically given an [OpenAPI Spec](https://github.com/OAI/OpenAPI-Specification).
2014-09-22 23:44:01 +00:00
2015-12-30 22:52:15 +00:00
Check out [Swagger-Spec](https://github.com/OAI/OpenAPI-Specification) 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)
- [Run docker in Vagrant](#run-docker-in-vagrant)
- [Public Docker image](#public-docker-image)
2015-11-05 09:12:51 +00:00
- [Homebrew](#homebrew)
2016-04-21 06:34:48 +00:00
- [Getting Started](#getting-started)
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 OpenAPI Spec](#validating-your-openapi-spec)
2015-10-01 21:26:24 +00:00
- [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)
- [To build the codegen library](#to-build-the-codegen-library)
- [Workflow Integration](#workflow-integration)
2016-03-14 05:39:07 +00:00
- [Github Integration](#github-integration)
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)
2016-02-21 17:03:06 +00:00
- [Companies/Projects using Swagger Codegen](#companiesprojects-using-swagger-codegen)
2016-05-08 10:48:22 +00:00
- [Swagger Codegen Core Team](#swagger-codegen-core-team)
- [License](#license)
2014-09-22 23:44:01 +00:00
2015-05-17 05:05:44 +00:00
## Compatibility
2015-12-30 22:52:15 +00:00
The OpenAPI Specification has undergone 3 revisions since initial creation in 2010. The swagger-codegen project has the following compatibilies with the OpenAPI Specification:
2014-09-22 23:44:01 +00:00
2015-12-30 22:52:15 +00:00
Swagger Codegen Version | Release Date | OpenAPI Spec compatibility | Notes
2015-08-24 07:37:23 +00:00
-------------------------- | ------------ | -------------------------- | -----
2016-07-22 03:23:45 +00:00
2.3.0 (upcoming minor release) | TBD | 1.0, 1.1, 1.2, 2.0 | Minor release with breaking changes
2016-08-09 02:23:49 +00:00
2.2.2 (upcoming patch release) | TBD | 1.0, 1.1, 1.2, 2.0 | Patch release (without breaking changes)
2016-08-07 21:03:44 +00:00
2.2.1 (**current stable**) | 2016-08-07 | 1.0, 1.1, 1.2, 2.0 | [tag v2.2.1](https://github.com/swagger-api/swagger-codegen/tree/v2.2.1)
2016-07-18 09:32:29 +00:00
2.1.6 | 2016-04-06 | 1.0, 1.1, 1.2, 2.0 | [tag v2.1.6](https://github.com/swagger-api/swagger-codegen/tree/v2.1.6)
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
2016-01-15 17:35:41 +00:00
If you're looking for the latest stable version, you can grab it directly from maven central (you'll need java 7 runtime at a minimum):
2015-12-30 21:40:58 +00:00
```
2016-08-08 15:56:04 +00:00
wget http://repo1.maven.org/maven2/io/swagger/swagger-codegen-cli/2.2.1/swagger-codegen-cli-2.2.1.jar -O swagger-codegen-cli.jar
2015-12-30 21:40:58 +00:00
java -jar swagger-codegen-cli.jar help
```
On a mac, it's even easier with `brew`:
```
brew install swagger-codegen
```
To build from source, you need the following installed and available in your $PATH:
2014-09-22 23:44:01 +00:00
2016-01-07 21:01:22 +00:00
* [Java 7 or 8](http://java.oracle.com)
2014-09-22 23:44:01 +00:00
2016-03-26 02:59:08 +00:00
* [Apache maven 3.3.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
2016-01-07 21:01:22 +00:00
Don't forget to install Java 7 or 8. You probably have 1.6.
2015-04-18 19:41:18 +00:00
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
```
2016-01-07 21:01:22 +00:00
export JAVA_HOME=`/usr/libexec/java_home -v 1.8`
2015-04-18 19:41:18 +00:00
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:
```
2016-07-13 14:10:41 +00:00
mvn clean package
2014-09-22 23:44:01 +00:00
```
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
```
#### Run Docker in Vagrant
Prerequisite: install [Vagrant](https://www.vagrantup.com/downloads.html) and [VirtualBox](https://www.virtualbox.org/wiki/Downloads).
2015-11-04 14:32:06 +00:00
```
2016-01-27 08:43:18 +00:00
git clone http://github.com/swagger-api/swagger-codegen.git
cd swagger-codegen
vagrant up
vagrant ssh
cd /vagrant
./run-in-docker.sh mvn package
2015-11-04 14:32:06 +00:00
```
#### Public Docker image
- https://hub.docker.com/r/swaggerapi/swagger-generator/ (official)
- https://hub.docker.com/r/jimschubert/swagger-codegen-cli/ (unofficial)
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/
```
2016-04-21 06:34:48 +00:00
## Getting Started
2015-11-05 09:12:51 +00:00
2016-04-21 06:34:48 +00:00
To generate a PHP client for http://petstore.swagger.io/v2/swagger.json, please run the following
```sh
git clone https://github.com/swagger-api/swagger-codegen
cd swagger-codegen
mvn clean package
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
-i http://petstore.swagger.io/v2/swagger.json \
-l php \
-o /var/tmp/php_api_client
```
(if you're on Windows, replace the last command with `java -jar modules\swagger-codegen-cli\target\swagger-codegen-cli.jar generate -i http://petstore.swagger.io/v2/swagger.json -l php -o c:\temp\php_api_client`)
2016-10-13 11:46:37 +00:00
You can also download the JAR (latest release) directly from [maven.org](http://central.maven.org/maven2/io/swagger/swagger-codegen-cli/2.2.1/swagger-codegen-cli-2.2.1.jar )
2016-04-21 06:34:48 +00:00
To get a list of **general** options available, please run `java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar help generate`
To get a list of PHP specified options (which can be passed to the generator with a config file via the `-c` option), please run `java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar config-help -l php`
## Generators
2015-11-05 09:12:51 +00:00
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
```
2016-04-21 06:34:48 +00:00
(On Windows, run `.\bin\windows\java-petstore.bat` instead)
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
2016-02-19 10:19:58 +00:00
swagger-codegen-cli generate - Generate code with chosen lang
SYNOPSIS
2016-02-19 10:19:58 +00:00
swagger-codegen-cli generate
[(-a <authorization> | --auth <authorization>)]
[--additional-properties <additional properties>]
[--api-package <api package>] [--artifact-id <artifact id>]
[--artifact-version <artifact version>]
[(-c <configuration file> | --config <configuration file>)]
2016-02-19 10:19:58 +00:00
[-D <system properties>] [--group-id <group id>]
(-i <spec file> | --input-spec <spec file>)
2016-02-19 10:19:58 +00:00
[--import-mappings <import mappings>]
[--instantiation-types <instantiation types>]
[--invoker-package <invoker package>]
(-l <language> | --lang <language>)
2016-02-19 10:19:58 +00:00
[--language-specific-primitives <language specific primitives>]
[--library <library>] [--model-package <model package>]
[(-o <output directory> | --output <output directory>)]
[(-s | --skip-overwrite)]
2016-02-19 10:19:58 +00:00
[(-t <template directory> | --template-dir <template directory>)]
[--type-mappings <type mappings>] [(-v | --verbose)]
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
2016-02-19 10:19:58 +00:00
--additional-properties <additional properties>
sets additional properties that can be referenced by the mustache
templates in the format of name=value,name=value
--api-package <api package>
package for generated api classes
--artifact-id <artifact id>
artifactId in generated pom.xml
--artifact-version <artifact version>
artifact version in generated pom.xml
-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
2016-02-19 10:19:58 +00:00
--group-id <group id>
groupId in generated pom.xml
-i <spec file>, --input-spec <spec file>
2016-02-19 10:19:58 +00:00
location of the swagger spec, as URL or file (required)
--import-mappings <import mappings>
specifies mappings between a given class and the import that should
be used for that class in the format of type=import,type=import
--instantiation-types <instantiation types>
sets instantiation type mappings in the format of
type=instantiatedType,type=instantiatedType.For example (in Java):
array=ArrayList,map=HashMap. In other words array types will get
instantiated as ArrayList in generated code.
--invoker-package <invoker package>
root package for generated code
-l <language>, --lang <language>
client language to generate (maybe class name in classpath,
required)
2016-02-19 10:19:58 +00:00
--language-specific-primitives <language specific primitives>
specifies additional language specific primitive types in the format
of type1,type2,type3,type3. For example:
String,boolean,Boolean,Double
--library <library>
library template (sub-template)
--model-package <model package>
package for generated models
-o <output directory>, --output <output directory>
where to write the generated files (current dir by default)
2016-02-19 10:19:58 +00:00
-s, --skip-overwrite
specifies if the existing files should be overwritten during the
generation.
-t <template directory>, --template-dir <template directory>
folder containing the template files
2016-02-19 10:19:58 +00:00
--type-mappings <type mappings>
sets mappings between swagger spec types and generated code types in
the format of swaggerType=generatedType,swaggerType=generatedType.
For example: array=List,map=Map,string=String
-v, --verbose
verbose mode
2015-11-10 02:20:49 +00:00
```
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.
2015-12-09 04:40:34 +00:00
You would then compile your library in the `output/myLibrary` folder with `mvn package` and execute the codegen like such:
```
java -cp output/myLibrary/target/myClientCodegen-swagger-codegen-1.0.0.jar:modules/swagger-codegen-cli/target/swagger-codegen-cli.jar io.swagger.codegen.SwaggerCodegen
2015-12-09 04:40:34 +00:00
```
Note the `myClientCodegen` is an option now, and you can use the usual arguments for generating your library:
```
java -cp output/myLibrary/target/myClientCodegen-swagger-codegen-1.0.0.jar:modules/swagger-codegen-cli/target/swagger-codegen-cli.jar \
io.swagger.codegen.SwaggerCodegen generate -l myClientCodegen\
2015-12-09 04:40:34 +00:00
-i http://petstore.swagger.io/v2/swagger.json \
-o myClient
```
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.
2015-12-30 22:52:15 +00:00
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 OpenAPI Specification.
2014-09-22 23:44:01 +00:00
:exclamation: On Dec 7th 2015, a Javascript API client generator has been added by @jfiala.
2014-09-22 23:44:01 +00:00
### Generating a client from local files
2015-12-30 22:52:15 +00:00
If you don't want to call your server, you can save the OpenAPI Spec files into a directory and pass an argument
2014-09-22 23:44:01 +00:00
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
```
To control generation of docs and tests for api and models, pass false to the option. For api, these options are `-DapiTests=false` and `-DapiDocs=false`. For models, `-DmodelTests=false` and `-DmodelDocs=false`.
These options default to true and don't limit the generation of the feature options listed above (like `-Dapi`):
```
# generate only models (with tests and documentation)
java -Dmodels {opts}
# generate only models (with tests but no documentation)
java -Dmodels -DmodelDocs=false {opts}
# generate only User and Pet models (no tests and no documentation)
java -Dmodels=User,Pet -DmodelTests=false {opts}
# generate only apis (without tests)
java -Dapis -DapiTests=false {opts}
# generate only apis (modelTests option is ignored)
java -Dapis -DmodelTests=false {opts}
```
2015-10-22 22:34:20 +00:00
When using selective generation, _only_ the templates needed for the specific generation will be used.
### Ignore file format
Swagger codegen supports a `.swagger-codegen-ignore` file, similar to `.gitignore` or `.dockerignore` you're probably already familiar with.
The ignore file allows for better control over overwriting existing files than the `--skip-overwrite` flag. With the ignore file, you can specify individual files or directories can be ignored. This can be useful, for example if you only want a subset of the generated code.
Examples:
```
# Swagger Codegen Ignore
# Lines beginning with a # are comments
# This should match build.sh located anywhere.
build.sh
# Matches build.sh in the root
/build.sh
# Exclude all recursively
docs/**
# Explicitly allow files excluded by other rules
!docs/UserApi.md
# Recursively exclude directories named Api
# You can't negate files below this directory.
src/**/Api/
# When this file is nested under /Api (excluded above),
# this rule is ignored because parent directory is excluded by previous rule.
!src/**/PetApiTests.cs
# Exclude a single, nested file explicitly
src/IO.Swagger.Test/Model/AnimalFarmTests.cs
```
The `.swagger-codegen-ignore` file must exist in the root of the output directory.
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/
2016-02-02 14:28:09 +00:00
AbstractJavaJAXRSServerCodegen.java
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
AspNet5ServerCodegen.java
AspNetCoreServerCodegen.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
2016-02-02 14:28:09 +00:00
GoClientCodegen.java
HaskellServantCodegen.java
JMeterCodegen.java
JavaCXFServerCodegen.java
2014-09-30 13:11:51 +00:00
JavaClientCodegen.java
2015-08-24 07:37:23 +00:00
JavaInflectorServerCodegen.java
2016-02-02 14:28:09 +00:00
JavaJerseyServerCodegen.java
2016-04-04 16:49:03 +00:00
JavaResteasyServerCodegen.java
JavascriptClientCodegen.java
2015-02-17 04:53:26 +00:00
NodeJSServerCodegen.java
2016-06-20 13:41:53 +00:00
NancyFXServerCodegen
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
SlimFrameworkServerCodegen.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
```
2016-07-07 09:25:54 +00:00
and `config.json` contains the following as an example:
```
{
"apiPackage" : "petstore"
}
```
Supported config options can be different per language. Running `config-help -l {lang}` will show available options.
**These options are applied via configuration file (e.g. config.json) or by passing them with `-D{optionName}={optionValue}**. (If `-D{optionName}` does not work, please open a [ticket](https://github.com/swagger-api/swagger-codegen/issues/new) and we'll look into it)
```
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
feign - HTTP client: Netflix Feign 8.1.1. JSON processing: Jackson 2.6.3
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)
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
```json
{
"groupId":"com.my.company",
2016-01-26 18:18:55 +00:00
"artifactId":"MyClient",
"artifactVersion":"1.2.0",
"library":"feign"
}
```
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:
```java
2014-09-30 13:11:51 +00:00
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";
}
2014-09-30 13:11:51 +00:00
}
```
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.
2015-12-30 23:05:23 +00:00
### Bringing your own models
Sometimes you don't want a model generated. In this case, you can simply specify an import mapping to tell
the codegen what _not_ to create. When doing this, every location that references a specific model will
refer back to your classes. Note, this may not apply to all languages...
To specify an import mapping, use the `--import-mappings` argument and specify the model-to-import logic as such:
```
--import-mappings Pet=my.models.MyPet
```
Or for multiple mappings:
```
Pet=my.models.MyPet,Order=my.models.MyOrder
```
2015-12-30 22:52:15 +00:00
### Validating your OpenAPI Spec
2014-09-22 23:44:01 +00:00
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
2016-06-17 11:36:24 +00:00
Please refer to https://github.com/swagger-api/swagger-codegen/wiki/Server-stub-generator-HOWTO for more information.
2014-09-22 23:44:01 +00:00
### To build the codegen library
This will create the swagger-codegen library from source.
2014-09-22 23:44:01 +00:00
```
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
## Workflow integration
You can use the [swagger-codegen-maven-plugin](modules/swagger-codegen-maven-plugin/README.md) for integrating with your workflow, and generating any codegen target.
2016-03-14 05:39:07 +00:00
## GitHub Integration
To push the auto-generated SDK to GitHub, we provide `git_push.sh` to streamline the process. For example:
1) Create a new repository in GitHub (Ref: https://help.github.com/articles/creating-a-new-repository/)
2) Generate the SDK
```
java -jar modules/swagger-codegen-cli/target/swagger-codegen-cli.jar generate \
-i modules/swagger-codegen/src/test/resources/2_0/petstore.json -l perl \
--git-user-id "wing328" \
--git-repo-id "petstore-perl" \
--release-note "Github integration demo" \
-o /var/tmp/perl/petstore
```
3) Push the SDK to GitHub
```
cd /var/tmp/perl/petstore
/bin/sh ./git_push.sh
```
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.
2016-06-27 01:50:54 +00:00
To customize the SDK, you can `POST` to `https://generator.swagger.io/gen/clients/{language}` with the following HTTP body:
```
{
"options": {},
"swaggerUrl": "http://petstore.swagger.io/v2/swagger.json"
}
```
in which the `options` for a language can be obtained by submitting a `GET` request to `https://generator.swagger.io/api/gen/clients/{language}`:
For example, `curl https://generator.swagger.io/api/gen/clients/python` returns
```
{
"packageName":{
"opt":"packageName",
"description":"python package name (convention: snake_case).",
"type":"string",
"default":"swagger_client"
},
"packageVersion":{
"opt":"packageVersion",
"description":"python package version.",
"type":"string",
"default":"1.0.0"
},
"sortParamsByRequiredFlag":{
"opt":"sortParamsByRequiredFlag",
"description":"Sort method arguments to place required parameters before optional parameters.",
"type":"boolean",
"default":"true"
}
}
```
To set package name to `pet_store`, the HTTP body of the request is as follows:
```
{
"options": {
"packageName": "pet_store"
},
"swaggerUrl": "http://petstore.swagger.io/v2/swagger.json"
}
```
and here is the curl command:
```
curl -H "Content-type: application/json" -X POST -d '{"options": {"packageName": "pet_store"},"swaggerUrl": "http://petstore.swagger.io/v2/swagger.json"}' https://generator.swagger.io/api/gen/clients/python
```
2015-11-04 14:32:06 +00:00
Guidelines for Contribution
---------------------------
2015-12-09 04:40:34 +00:00
Please refer to this [page](https://github.com/swagger-api/swagger-codegen/blob/master/CONTRIBUTING.md)
2015-11-04 14:32:06 +00:00
2016-02-21 17:02:26 +00:00
Companies/Projects using Swagger Codegen
----------------------------------------
Here are some companies/projects using Swagger Codegen in production. To add your company/project to the list, please visit [README.md](https://github.com/swagger-api/swagger-codegen/blob/master/README.md) and click on the icon to edit the page.
- [Activehours](https://www.activehours.com/)
2016-02-21 17:02:26 +00:00
- [Acunetix](https://www.acunetix.com/)
2016-02-25 03:20:31 +00:00
- [Atlassian](https://www.atlassian.com/)
2016-05-31 13:35:19 +00:00
- [Avenida Compras S.A.](https://www.avenida.com.ar)
2016-11-22 02:44:32 +00:00
- [Balance Internet](https://www.balanceinternet.com.au/)
2016-03-22 14:20:26 +00:00
- [beemo](http://www.beemo.eu)
2016-05-07 00:47:30 +00:00
- [bitly](https://bitly.com)
2016-07-15 04:20:19 +00:00
- [Bufferfly Network](https://www.butterflynetinc.com/)
- [Cachet Financial](http://www.cachetfinancial.com/)
- [carpolo](http://www.carpolo.co/)
2016-03-04 13:53:16 +00:00
- [CloudBoost](https://www.CloudBoost.io/)
2016-07-01 10:32:08 +00:00
- [Conplement](http://www.conplement.de/)
- [Cummins] (http://www.cummins.com/)
2016-02-22 14:43:03 +00:00
- [Cupix](http://www.cupix.com)
2016-07-29 02:38:51 +00:00
- [DBBest Technologies](https://www.dbbest.com)
- [DecentFoX](http://decentfox.com/)
2016-02-22 14:43:03 +00:00
- [DocuSign](https://www.docusign.com)
2016-02-21 17:02:26 +00:00
- [Ergon](http://www.ergon.ch/)
2016-08-25 16:10:10 +00:00
- [EMC](https://www.emc.com/)
2016-03-22 08:13:37 +00:00
- [eureka](http://eure.jp/)
2016-02-21 17:02:26 +00:00
- [everystory.us](http://everystory.us)
2016-02-21 17:05:44 +00:00
- [Expected Behavior](http://www.expectedbehavior.com/)
2016-11-18 16:03:57 +00:00
- [Flat](https://flat.io)
- [Finder](http://en.finder.pl/)
2016-03-22 14:20:26 +00:00
- [FH Münster - University of Applied Sciences](http://www.fh-muenster.de)
2016-07-15 04:20:19 +00:00
- [Gear Zero Network](https://www.gearzero.ca)
2016-08-03 08:37:17 +00:00
- [Germin8](http://www.germin8.com)
2016-09-20 02:32:58 +00:00
- [goTransverse](http://www.gotransverse.com/api)
- [GraphHopper](https://graphhopper.com/)
- [Gravitate Solutions](http://gravitatesolutions.com/)
- [IMS Health](http://www.imshealth.com/en/solution-areas/technology-and-applications)
2016-11-18 08:46:54 +00:00
- [Intent HQ](http://www.intenthq.com)
2016-04-18 14:15:50 +00:00
- [Interactive Intelligence](http://developer.mypurecloud.com/)
- [LANDR Audio](https://www.landr.com/)
2016-06-13 07:15:21 +00:00
- [Lascaux](http://www.lascaux.it/)
- [LiveAgent](https://www.ladesk.com/)
- [Kabuku](http://www.kabuku.co.jp/en)
2016-06-26 15:34:54 +00:00
- [Kuroi](http://kuroiwebdesign.com/)
2016-03-23 13:47:38 +00:00
- [Kuary](https://kuary.com/)
- [Mindera](http://mindera.com/)
- [Mporium](http://mporium.com/)
2016-02-21 17:02:26 +00:00
- [nViso](http://www.nviso.ch/)
- [Okiok](https://www.okiok.com)
2016-10-05 02:51:54 +00:00
- [Onedata](http://onedata.org)
- [OrderCloud.io](http://ordercloud.io)
2016-02-22 13:18:25 +00:00
- [OSDN](https://osdn.jp)
2016-05-10 02:38:16 +00:00
- [PagerDuty](https://www.pagerduty.com)
2016-05-04 10:26:13 +00:00
- [Pepipost](https://www.pepipost.com)
2016-08-24 14:28:08 +00:00
- [Plexxi](http://www.plexxi.com)
2016-03-01 10:11:52 +00:00
- [Pixoneye](http://www.pixoneye.com/)
- [PostAffiliatePro](https://www.postaffiliatepro.com/)
2016-11-05 12:11:58 +00:00
- [QAdept](http://qadept.com/)
2016-08-26 02:46:18 +00:00
- [QuantiModo](https://quantimo.do/)
2016-06-27 21:22:38 +00:00
- [Rapid7](https://rapid7.com/)
2016-02-21 17:02:26 +00:00
- [Reload! A/S](https://reload.dk/)
2016-05-04 10:26:13 +00:00
- [REstore](https://www.restore.eu)
2016-05-23 12:56:14 +00:00
- [Revault Sàrl](http://revault.ch)
2016-11-22 17:14:52 +00:00
- [Riffyn](https://riffyn.com)
2016-02-21 17:02:26 +00:00
- [Royal Bank of Canada (RBC)](http://www.rbc.com/canada.html)
2016-05-25 16:00:23 +00:00
- [SCOOP Software GmbH](http://www.scoop-software.de)
2016-07-29 00:04:46 +00:00
- [Skurt](http://www.skurt.com)
2016-02-21 17:02:26 +00:00
- [SmartRecruiters](https://www.smartrecruiters.com/)
- [StyleRecipe](http://stylerecipe.co.jp)
2016-03-04 09:09:13 +00:00
- [Svenska Spel AB](https://www.svenskaspel.se/)
2016-11-17 13:49:57 +00:00
- [TaskData](http://www.taskdata.com/)
2016-02-21 17:02:26 +00:00
- [ThoughtWorks](https://www.thoughtworks.com)
- [uShip](https://www.uship.com/)
- [W.UP](http://wup.hu/?siteLang=en)
- [Wealthfront](https://www.wealthfront.com/)
- [WEXO A/S](https://www.wexo.dk/)
2016-02-29 15:41:34 +00:00
- [Zalando](https://tech.zalando.com)
2016-02-21 17:02:26 +00:00
- [ZEEF.com](https://zeef.com/)
2016-05-08 10:48:22 +00:00
# Swagger Codegen Core Team
Swagger Codegen core team members are contributors who have been making significant contributions (review issues, fix bugs, make enhancements, etc) to the project on a regular basis.
2016-05-08 10:48:22 +00:00
## API Clients
2016-06-24 08:48:24 +00:00
| Languages | Core Team (join date) |
2016-05-08 10:48:22 +00:00
|:-------------|:-------------|
| ActionScript | |
| C++ | |
| C# | @jimschubert (2016/05/01) | |
2016-05-08 14:24:52 +00:00
| Clojure | @xhh (2016/05/01) |
2016-05-08 10:48:22 +00:00
| Dart | |
| Groovy | |
| Go | @guohuang (2016/05/01) @neilotoole (2016/05/01) |
2016-06-03 16:02:30 +00:00
| Java | @cbornet (2016/05/01) @xhh (2016/05/01) @epaul (2016/06/04) |
| Java (Spring Cloud) | @cbornet (2016/07/19) |
2016-05-08 14:33:52 +00:00
| NodeJS/Javascript | @xhh (2016/05/01) |
2016-05-09 13:53:01 +00:00
| ObjC | @mateuszmackowiak (2016/05/09) |
2016-05-08 10:48:22 +00:00
| Perl | @wing328 (2016/05/01) |
| PHP | @arnested (2016/05/01) |
| Python | @scottrw93 (2016/05/01) |
2016-05-22 14:48:43 +00:00
| Ruby | @wing328 (2016/05/01) @zlx (2016/05/22) |
2016-05-08 14:24:52 +00:00
| Scala | |
2016-05-08 10:48:22 +00:00
| Swift | @jaz-ah (2016/05/01) @Edubits (2016/05/01) |
2016-05-08 16:45:29 +00:00
| TypeScript (Node) | @Vrolijkx (2016/05/01) |
| TypeScript (Angular1) | @Vrolijkx (2016/05/01) |
| TypeScript (Angular2) | @Vrolijkx (2016/05/01) |
2016-05-08 16:46:17 +00:00
| TypeScript (Fetch) | |
2016-05-08 10:48:22 +00:00
## Server Stubs
2016-06-24 08:48:24 +00:00
| Languages | Core Team (date joined) |
2016-05-08 10:48:22 +00:00
|:------------- |:-------------|
| C# ASP.NET5 | @jimschubert (2016/05/01) |
2016-06-20 14:42:24 +00:00
| Go Server | @guohuang (2016/06/13) |
2016-05-08 10:48:22 +00:00
| Haskell Servant | |
| Java Spring Boot | @cbornet (2016/07/19) |
| Java Spring MVC | @kolyjjj (2016/05/01) @cbornet (2016/07/19) |
2016-05-08 10:48:22 +00:00
| Java JAX-RS | |
2016-06-20 13:41:53 +00:00
| NancyFX | |
2016-05-08 14:24:52 +00:00
| NodeJS | @kolyjjj (2016/05/01) |
2016-05-08 10:48:22 +00:00
| PHP Lumen | @abcsum (2016/05/01) |
| PHP Silex | |
| PHP Slim | |
| Python Flask | |
2016-05-08 14:24:52 +00:00
| Ruby Sinatra | @wing328 (2016/05/01) | |
2016-05-08 10:48:22 +00:00
| Scala Scalatra | | |
## Template Creator
Here is a list of template creators:
* API Clients:
2016-05-11 03:27:37 +00:00
* Akka-Scala: @cchafer
2016-06-15 02:44:04 +00:00
* C++ REST: @Danielku15
2016-05-08 15:24:14 +00:00
* C# (.NET 2.0): @who
2016-05-08 10:48:22 +00:00
* Clojure: @xhh
* Dart: @yissachar
* Groovy: @victorgit
* Go: @wing328
* Java (Retrofit): @0legg
* Java (Retrofi2): @emilianobonassi
* Java (Jersey2): @xhh
* Java (okhttp-gson): @xhh
* Javascript/NodeJS: @jfiala
* Javascript (Closure-annotated Angular) @achew22
* Perl: @wing328
* Swift: @tkqubo
2016-10-15 10:18:10 +00:00
* Swift 3: @hexelon
2016-05-08 10:48:22 +00:00
* TypeScript (Node): @mhardorf
* TypeScript (Angular1): @mhardorf
* TypeScript (Fetch): @leonyu
* TypeScript (Angular2): @roni-frantchi
* Server Stubs
* C# ASP.NET5: @jimschubert
2016-06-22 02:33:31 +00:00
* C# NancyFX: @mstefaniuk
2016-09-09 07:49:27 +00:00
* Erlang Server: @galaxie
2016-06-20 14:42:24 +00:00
* Go Server: @guohuang
2016-05-08 10:48:22 +00:00
* Haskell Servant: @algas
2016-10-26 06:41:44 +00:00
* Java MSF4J: @sanjeewa-malalgoda
2016-05-08 10:48:22 +00:00
* Java Spring Boot: @diyfr
2016-10-26 06:41:44 +00:00
* Java Undertow: @stevehu
2016-05-08 10:48:22 +00:00
* JAX-RS RestEasy: @chameleon82
2016-10-10 13:10:52 +00:00
* JAX-RS CXF: @hiveship
* JAX-RS CXF (CDI): @nickcmaynard
2016-05-08 10:48:22 +00:00
* PHP Lumen: @abcsum
* PHP Slim: @jfastnacht
2016-05-16 06:37:47 +00:00
* Ruby on Rails 5: @zlx
2016-08-01 08:17:24 +00:00
* Documentation
* HTML Doc 2: @jhitchcock
2016-08-01 09:35:05 +00:00
* Confluence Wiki: @jhitchcock
2016-05-08 10:48:22 +00:00
## How to join the core team
Here are the requirements to become a core team member:
- rank within top 50 in https://github.com/swagger-api/swagger-codegen/graphs/contributors
- to contribute, here are some good [starting points](https://github.com/swagger-api/swagger-codegen/issues?q=is%3Aopen+is%3Aissue+label%3A%22Need+community+contribution%22)
- regular contributions to the project
- about 3 hours per week
- for contribution, it can be addressing issues, reviewing PRs submitted by others, submitting PR to fix bugs or make enhancements, etc
To join the core team, please reach out to wing328hk@gmail.com (@wing328) for more information.
To become a Template Creator, simply submit a PR for new API client (e.g. Rust, Elixir) or server stub (e.g. Ruby Grape) generator.
2016-11-04 22:16:04 +00:00
## License information on Generated Code
The Swagger Codegen project is intended as a benefit for users of the Swagger / Open API Specification. The project itself has the [License](#license) as specified. In addition, please understand the following points:
* The templates included with this project are subject to the [License](#license).
* Generated code is intentionally _not_ subject to the parent project license
When code is generated from this project, it shall be considered **AS IS** and owned by the user of the software. There are no warranties--expressed or implied--for generated code. You can do what you wish with it, and once generated, the code is your responsibility and subject to the licensing terms that you deem appropriate.
2014-09-22 23:44:01 +00:00
License
-------
2016-01-07 00:04:16 +00:00
Copyright 2016 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.
2016-02-12 20:23:27 +00:00
---
<img src="http://swagger.io/wp-content/uploads/2016/02/logo.jpg"/>