1

次のリンクから grpc-java チュートリアルをクイックスタートするためのすべての指示に従いました。

https://github.com/grpc/grpc-java/tree/master/examples but the command
../gradlew installDist 

ビルドは成功しますが、サーバーを実行すると、次のような結果が表示されます。

pradnya@pradnya-VirtualBox:~/grpc-java/examples$ ./build/install/grpc-examples/bin/hello-world-server 2015 年 9 月 7 日 6:36:21 PM io.grpc.examples.helloworld.HelloWorldServer start INFO: サーバーが起動し、50051 でリッスンしています * JVM がシャットダウンしているため、gRPC サーバーをシャットダウンしています *サーバーがシャットダウンしています

4

1 に答える 1

2

A recent change (from Thursday, Sep 2nd) broke the example. A fix is to add a server.awaitTermination() at the end of the start() method, which will prevent the JVM from exiting. You'll also need to mark start() and main() as throws InterruptedException. I made a GitHub issue to track updating the example.

于 2015-09-08T03:28:56.983 に答える