Maven
To get started with Akka gRPC read the client or server introductions.
Configuring what to generate
The plugin can be configured to generate either Java or Scala classes, and then server and or client for the chosen language. By default both client and server in Java are generated.
- Java
-
<plugin> <groupId>com.lightbend.akka.grpc</groupId> <artifactId>akka-grpc-maven-plugin</artifactId> <version>${akka.grpc.version}</version> <configuration> <language>Java</language> <generateClient>false</generateClient> <generateServer>true</generateServer> </configuration> </plugin>
- Scala
-
<plugin> <groupId>com.lightbend.akka.grpc</groupId> <artifactId>akka-grpc-maven-plugin</artifactId> <version>${akka.grpc.version}</version> <configuration> <language>Scala</language> <generateClient>false</generateClient> <generateServer>true</generateServer> </configuration> </plugin>
Generating server “power APIs”
To additionally generate server “power APIs” that have access to request metadata, as described here, set the serverPowerApis
tag as true:
pom.xml
-
<plugin> ... <configuration> ... <generatorSettings> <serverPowerApis>true</serverPowerApis> </generatorSettings> </configuration> </plugin>
Proto source directory
By default the plugin looks for .proto
-files under src/main/protobuf
(and src/main/proto
). This can be changed with the protoPaths
setting, which is a relative path to the project basedir. The below configuration overrides the proto path to be only src/main/protobuf
:
pom.xml
-
<plugin> <groupId>com.lightbend.akka.grpc</groupId> <artifactId>akka-grpc-maven-plugin</artifactId> <version>${akka.grpc.version}</version> <configuration> <protoPaths> <protoPath>src/main/protobuf</protoPath> </protoPaths> </configuration> </plugin>
Loading proto files from artifacts
In gRPC it is common to make the version of the protocol you are supporting explicit by duplicating the proto definitions in your project.
When using sbt as a build system, we also support loading your proto definitions from a dependency classpath. This is not yet supported for Maven and Gradle. If you are interested in this feature it is tracked in issue #152.
Starting your Akka gRPC server from Maven
If you want to use TLS-based negotiation on JDK 8 versions prior to 1.8.0_251, the server requires a special Java agent for ALPN.
Doing this from inside of Maven requires some configuration:
pom.xml
for JVM 8-
<dependencies> <dependency> <groupId>org.mortbay.jetty.alpn</groupId> <artifactId>jetty-alpn-agent</artifactId> <version>2.0.10</version> <scope>runtime</scope> </dependency> <dependencies> ... <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.5.1</version> <executions> <execution> <id>getClasspathFilenames</id> <goals> <!-- provides the jars of the classpath as properties inside of Maven so that we can refer to one of the jars in the exec plugin config below --> <goal>properties</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> <configuration> <executable>java</executable> <arguments> <argument>-javaagent:${org.mortbay.jetty.alpn:jetty-alpn-agent:jar}</argument> <argument>-classpath</argument> <classpath /> <argument>com.example.MainClass</argument> </arguments> </configuration> </plugin> </plugins>
The server can then be started from the command line with:
mvn compile dependency:properties exec:exec