Very simple sample of a gRPC Kotlin service.
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
Read here: https://developers.google.com/protocol-buffers/
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
Origin fork from: @FlavioF/kotlin-grpc-sample