Very simple Java8 sample of a gRPC Kotlin service. Check Java9 branch to check Java9 sample.
This samples is composed by two gRPC services (user and key value) and one client. The user service must get data from the key value service to provide all information about the user to a client.
- Java 8
- Maven
...
...
Build
mvn clean install
mvn -pl kotlin-grpc-keyvalue-service exec:java
mvn -pl kotlin-grpc-user-service exec:java
mvn -pl kotlin-grpc-client exec:java