mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-11-21 02:53:40 +00:00
* InlineResolver to flatten callback operations
Signed-off-by: lwlee2608 <lwlee2608@gmail.com>
* clone from VertxServerCodegen, to new VertxWebServerCodegen
* fix compilation error in VertxWebCodegn
* Start working on VertxWebServerCodegen, adding support files
* add server api handler
* add server api and fix yaml spec file generation
* link api to apiHandler
* convert vertx parameters into API model
* add support to multipart/form-data upload files
* ability to set http status code from ApiImpl
* replace rootPackage with invokerPackage
* add readme and sample
* fix circleCi error
* override file to FileUpload in typeMapping, no need to override from fromOperation(). Also remove unused annotation import from model
* remove smartBear software copyright
* use {{artifactVersion}} instead of hardcode version in readme
* add -t flag in generation script
* add generated vertx-web server to master pom for testing
4.3 KiB
4.3 KiB
| title | sidebar_label |
|---|---|
| Config Options for java-vertx-web | java-vertx-web |
| Option | Description | Values | Default |
|---|---|---|---|
| sortParamsByRequiredFlag | Sort method arguments to place required parameters before optional parameters. | true | |
| ensureUniqueParams | Whether to ensure parameter names are unique in an operation (rename parameters that are not). | true | |
| allowUnicodeIdentifiers | boolean, toggles whether unicode identifiers are allowed in names or not, default is false | false | |
| prependFormOrBodyParameters | Add form or body parameters to the beginning of the parameter list. | false | |
| modelPackage | package for generated models | org.openapitools.vertxweb.server.model | |
| apiPackage | package for generated api classes | org.openapitools.vertxweb.server.api | |
| invokerPackage | root package for generated code | org.openapitools.vertxweb.server | |
| groupId | groupId in generated pom.xml | org.openapitools | |
| artifactId | artifactId in generated pom.xml. This also becomes part of the generated library's filename | openapi-java-vertx-web-server | |
| artifactVersion | artifact version in generated pom.xml. This also becomes part of the generated library's filename | 1.0.0-SNAPSHOT | |
| artifactUrl | artifact URL in generated pom.xml | https://github.com/openapitools/openapi-generator | |
| artifactDescription | artifact description in generated pom.xml | OpenAPI Java | |
| scmConnection | SCM connection in generated pom.xml | scm git@github.com:openapitools/openapi-generator.git |
|
| scmDeveloperConnection | SCM developer connection in generated pom.xml | scm git@github.com:openapitools/openapi-generator.git |
|
| scmUrl | SCM URL in generated pom.xml | https://github.com/openapitools/openapi-generator | |
| developerName | developer name in generated pom.xml | OpenAPI-Generator Contributors | |
| developerEmail | developer email in generated pom.xml | team@openapitools.org | |
| developerOrganization | developer organization in generated pom.xml | OpenAPITools.org | |
| developerOrganizationUrl | developer organization URL in generated pom.xml | http://openapitools.org | |
| licenseName | The name of the license | Unlicense | |
| licenseUrl | The URL of the license | http://unlicense.org | |
| sourceFolder | source folder for generated code | src/main/java | |
| serializableModel | boolean - toggle "implements Serializable" for generated models | false | |
| bigDecimalAsString | Treat BigDecimal values as Strings to avoid precision loss. | false | |
| fullJavaUtil | whether to use fully qualified name for classes under java.util. This option only works for Java API client | false | |
| hideGenerationTimestamp | Hides the generation timestamp when files are generated. | false | |
| withXml | whether to include support for application/xml content type and include XML annotations in the model (works with libraries that provide support for JSON and XML) | false | |
| dateLibrary | Option. Date library to use |
|
java8 |
| java8 | Option. Use Java8 classes instead of third party equivalents |
|
false |
| disableHtmlEscaping | Disable HTML escaping of JSON strings when using gson (needed to avoid problems with byte[] fields) | false | |
| booleanGetterPrefix | Set booleanGetterPrefix | get | |
| parentGroupId | parent groupId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect | null | |
| parentArtifactId | parent artifactId in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect | null | |
| parentVersion | parent version in generated pom N.B. parentGroupId, parentArtifactId and parentVersion must all be specified for any of them to take effect | null | |
| snapshotVersion | Uses a SNAPSHOT version. |
|
null |
