This project is intended to demonstrate how gRPC works.
This example project uses proto3.
See What is gRPC
protobuf-maven-plugin is responsible for Java gRPC code generation.
To manually generate codes, add protoc to system path then from terminal go to resources/proto and run this command:
protoc *.proto --java_out=../../java
It generates corresponding java file(s) under given location.