Generate Stub from protobuf using protoc-jar-maven-plugin Maven plugin
mvn clean generate-sourcesYou may use BloomGRPC toll to invoke the gRPC APPIs...
brew install --cask bloomrpcGive App permission on Mac
sudo xattr -rd com.apple.quarantine /Applications/BloomRPC.appNGINX Open Source 1.13.10 or higher
--with-http_v2_module
nginx -V server {
listen 8088 http2;
access_log /Users/aloksingh/logs/nginx-access.log main;
error_log /Users/aloksingh/logs/nginx-error.log warn;
location / {
grpc_pass grpc://localhost:9090;
}
}