eu.metaengine:metaengine-protobuf-java-spring-maven-plugin
Protobuf 3 → Java Spring gRPC-Connect services and message records, delivered as a Maven plugin. Typed Connect-over-HTTP clients on RestClient 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 gRPC-Connect client and message records are produced — and added to your compile roots — on every mvn compile or package. Point <inputSpec> at a .proto file and set the target <packageName>.
<build>
<plugins>
<plugin>
<groupId>eu.metaengine</groupId>
<artifactId>metaengine-protobuf-java-spring-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<id>generate-grpc-client</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${project.basedir}/src/main/proto/service.proto</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 .proto path, an http(s) URL, or inline proto content. The gRPC transport is Connect-over-HTTP on Spring RestClient.
<configuration>
<inputSpec>${project.basedir}/service.proto</inputSpec>
<packageName>com.example.api</packageName>
<bearerAuth>API_TOKEN</bearerAuth>
<timeout>30</timeout>
<retry>3</retry>
<errorHandling>true</errorHandling>
</configuration><configuration>
<inputSpec>${project.basedir}/service.proto</inputSpec>
<packageName>com.example.api</packageName>
<baseUrlProperty>api.base-url</baseUrlProperty>
<documentation>true</documentation>
</configuration><configuration>
<inputSpec>${project.basedir}/service.proto</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) on message records from proto field rulesWithNonNullSerialization()Add @JsonInclude(NON_NULL) to records so unset optional fields drop out of the serialized JSON
Auth · Headers · Resilience
13WithErrorHandling()Smart error handling on the Connect client 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)
Protobuf Options
5WithDocumentation()Generate JavaDoc comments from .proto field and service descriptionsWithTypeFilter(Func)Filter extracted proto types (messages + enums) before registration — only types returning true are generatedWithTypeMapping(string, Type)Override the Java mapping for a protobuf well-known type by fully-qualified name (e.g. google.protobuf.Timestamp → String)WithMethodNames(Func)Custom method naming ruleWithOptionsObjectThreshold(int)Parameter count for options object (default: 4)
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
1EnableVerboseLogging()Enable detailed logging