Generate Stub from protobuf using protoc-jar-maven-plugin
Maven plugin
mvn clean generate-sources
You may use BloomGRPC toll to invoke the gRPC APPIs...
brew install --cask bloomrpc
Give App permission on Mac
sudo xattr -rd com.apple.quarantine /Applications/BloomRPC.app
NGINX 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;
}
}