OpenAPI to Java Spring Client Generator
eu.metaengine:metaengine-openapi-java-spring-maven-pluginConvert OpenAPI 3.x to Java Spring services and models, delivered as a Maven plugin. Typed RestClient services with bearer/basic auth, retries, timeouts, and error handling — generated straight into your build at generate-sources.
Pick your registry
The same generator, published to every ecosystem we support. Install however your project expects.
Drive it from Maven or programmatically
Maven Central ships a build-time plugin that runs inside your build. NuGet ships the same generator as a C# fluent API — same options, same output.
Add the plugin to your pom.xml. Its generate goal binds to the generate-sources phase, so the Spring client and models are produced — and added to your compile roots — on every mvn compile or package. Point <inputSpec> at a spec file or URL and set the target <packageName>.
<build>
<plugins>
<plugin>
<groupId>eu.metaengine</groupId>
<artifactId>metaengine-openapi-java-spring-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>generate-api-client</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${project.basedir}/src/main/resources/openapi.yaml</inputSpec>
<packageName>com.example.api</packageName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>The generate goal binds to the generate-sources phase, so a normal mvn compile (or package) produces the client and registers it as a compile source root — no extra wiring. <inputSpec> accepts a local path or an http(s) URL; OpenAPI 3.0 and 3.1 in JSON or YAML.
<configuration>
<inputSpec>${project.basedir}/openapi.yaml</inputSpec>
<packageName>com.example.api</packageName>
<bearerAuth>API_TOKEN</bearerAuth>
<timeout>30</timeout>
<retry>3</retry>
<errorHandling>true</errorHandling>
</configuration><configuration>
<inputSpec>https://api.example.com/openapi.json</inputSpec>
<packageName>com.example.api</packageName>
<includeTags>payments,refunds</includeTags>
<baseUrlProperty>api.base-url</baseUrlProperty>
<documentation>true</documentation>
</configuration><configuration>
<inputSpec>${project.basedir}/openapi.yaml</inputSpec>
<packageName>com.example.api</packageName>
<basicAuth>API_USER,API_PASS</basicAuth>
<customHeaders>
<customHeader>X-Tenant-ID:TENANT_ID</customHeader>
</customHeaders>
</configuration>Every knob, documented
Every option is available on the C# fluent API as a method; the Maven plugin exposes most as <configuration> elements. Cross-cutting auth, headers, retries and timeouts apply across frameworks.
Spring Options
3WithBaseUrlProperty(string)Spring property placeholder for base-URL injection (default: "api.base-url"). Generated services bind it with @Value("${...}").WithBeanValidation()Emit Jakarta Bean Validation annotations (@NotNull, @Min / @Max, @Size, @Pattern, @Email) on model records from schema constraintsWithNonNullSerialization()Add @JsonInclude(NON_NULL) to records so unset nullable fields drop out of the serialized JSON
Auth · Headers · Resilience
13WithErrorHandling()Smart error handling on RestClient based on HTTP status (404 / 403 → null · 400 / 422 / 409 → error body · 401 / 5xx → throw)WithErrorHandling(errors => errors...)Per-status routing: ReturnNullFor(404, 403) · ReturnErrorFor(400, 422) · ThrowFor(401, 500)WithBearerAuth()Bearer token from env var (default API_TOKEN) — adds Authorization headerWithBearerAuth(string)Bearer token from a specific env var nameWithBearerAuth(string, string)Bearer token with custom header name (e.g. X-Api-Key)WithBasicAuth()HTTP Basic auth from default env vars (API_USERNAME / API_PASSWORD)WithBasicAuth(string, string)HTTP Basic auth from username + password env varsWithCustomHeader(string, string)Static header from env var. Repeatable (e.g. X-Tenant-ID ← TENANT_ID)WithTimeout(double)Request timeout in seconds for all operationsWithTimeout(double?, double?, double?, double?)Granular timeout: connect · read · write · poolWithRetries()Retries with exponential backoff (default status 429, 503)WithRetries(int)Retries with custom max attemptsWithRetries(int, double, double, int[])Retries with full custom settings including status codes
Java Options
3WithDocumentation()Generate JavaDoc comments on methods and parameters from the specWithMethodNames(Func)Custom method naming ruleWithOptionsObjectThreshold(int)Parameter count for options object (default: 4)
OpenAPI Filtering
3WithStrictValidation()Enable strict OpenAPI validationWithOperationFilter(Func)Filter operations by predicateWithHeaderFilter(Func)Filter header parameters
Naming Transformations
3Types(Func)Transform type namesPaths(Func)Transform output pathsFileNames(Func)Transform file names
File Management
5CleanDestination()Clean output directory before generationAlwaysOverwrite()Always overwrite existing filesOnlyWhenModelChanged()Update only when model changesOnlyWhenNew()Write only new files, preserve existingCleanDirectories(...)Clean specific subdirectories
Diagnostics
2Verbose()Enable verbose loggingWithLogger(Action<string>)Route generation log output to a custom sink