Developing the gRPC server
You need to configure the server
project before implementing these abstract classes. Let’s configure the server project first.
The server
project directory structure will look like the following. The project root directory contains the build.gradle
and settings.gradle
files:
├── server ├── build.gradle ├── gradle │ └── wrapper ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main │ ├── java ...