An OpenAPI Generator Plus template for a Java API client using JAX-RS
npm install @openapi-generator-plus/java-jaxrs-client-generatorAn OpenAPI Generator Plus template for a Java API client using JAX-RS.
The generated code has useful features:
* Model objects and enums will be nested in the API service if they are inlined in the specification.
See the OpenAPI Generator Plus documentation for how to use
generator templates.
The config file is specified on the command-line when running openapi-generator-plus using the -c flag.
The config file is in YAML format. The config properties below are added to the config file at the top-level.
``yml
inputPath: api.yml
outputPath: dist
generator: "@openapi-generator-plus/java-jaxrs-client-generator"
package: com.example
useBeanValidation: true
constantStyle: camelCase
`
|Property|Type|Description|Default|
|--------|----|-----------|-------|
|package|string|Base package name that other default package names will be based on.|"com.example"|apiPackage
||string|Package for API interfaces.|"${package}"|apiImplPackage
||string|Package for API implementation classes.|"${package}.impl"|apiSpecPackage
||string|Package for JAX-RS API interfaces.|"${package}.spec"|apiSpiPackage
||string|Package for SPI interfaces for extra functionality.|"${package}.spi|modelPackage
||string|Package for API model classes.|"${package}.model"|relativeSourceOutputPath
||string|The path to output generated source code, relative to the output path.|./ or ./src/main/java if maven is specified.|relativeApiSourceOutputPath
||string|The path to output generated API interface source code, relative to the output path.|${relativeSourceOutputPath}|relativeApiImplSourceOutputPath
||string|The path to output generated API implementation source code, relative to the output path.|${relativeSourceOutputPath}|
|Property|Type|Description|Default|
|--------|----|-----------|-------|
|useBeanValidation|boolean|Whether to use bean validation.|true|dateImplementation
||string|Date type class.|"java.time.LocalDate"|timeImplementation
||string|Time type class.|"java.time.LocalTime"|dateTimeImplementation
||string|Date time type class.|"java.time.OffsetDateTime"|binaryRepresentation
||string|Binary data representation.|"byte[]"|constantStyle
||"allCapsSnake"\|"allCaps"\|"camelCase"|The style to use for constant naming.|"allCapsSnake"|enumMemberStyle
||"preserve" \| "constant"|The style to use for enum member names: preserve _attempts_ to match the enum member name to the literal enum value from the spec; constant uses the constantStyle rules.|"constant"|useJakarta
||boolean|Whether to use jakarta packages instead of javax packages.|false|useRuntimeUnexpectedExceptions
||boolean|Whether to make UnexpectedApiException and its various implementations runtime exceptions instead of checked exceptions.|false|
|Property|Type|Description|Default|
|--------|----|-----------|-------|
|connectionTimeoutMillis|number|The number of milliseconds to wait to connect to the API server before timing out. 0 means no timeout.|30000|receiveTimeoutMillis
||number|The number of milliseconds to wait for a response the API server before timing out. 0 means no timeout.|60000|
|Property|Type|Description|Default|
|--------|----|-----------|-------|
|maven|MavenConfig|Configuration for generating a Maven pom.xml|undefined|
#### MavenConfig
|Property|Type|Description|Default|
|--------|----|-----------|-------|
|groupId|string|The Maven template groupId|com.example|artifactId
||string|The Maven template artifactId|api-server|version
||string|The Maven template version|0.0.1|versions
||{ name: version }|Custom dependency versions (see pom.hbs)|undefined|
|Property|Type|Description|Default|
|--------|----|-----------|-------|
|hideGenerationTimestamp|boolean|Whether to hide the timestamp in the @Generated annotation.|true|
|Property|Type|Description|Default|
|--------|----|-----------|-------|
|imports|string[]|Additional imports to add to all generated classes.|undefined|customTemplates
||string|The path to a directory containing custom Handlebars templates, relative to the config file. See Customising below.|undefined|customizations
||string: JavaClassCustomizations|Customizations to apply to generated classes as a map from a fully-qualified class name to a customizations object.|undefined|
#### JavaClassCustomizations
Cutomizations to apply to the selected Java class.
|Property|Type|Description|Default|
|--------|----|-----------|-------|
|implements|string[]|An array of fully-qualified class names to add to the implements of the generated class.|undefined|
This generator supports a customTemplates config file property to specify a directory containing Handlebars templates that will be used to override built-in templates.
Any custom template will have the original template available as a partial named by prefixing the template name with original, and then upper-casing the first letter, e.g. originalBodyParams.
Some of the templates in the generator are designed to support overriding for custom requirements. Please inspect the templates in the templates` directory.