2015-09-07 68 views
0

我按照所有的說明,從以下鏈接快速開始GRPC-Java教程: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 Sep 07,2015 6:36:21 PM io.grpc。 examples.helloworld.HelloWorldServer start 信息:服務器啓動,正在偵聽50051 *正在關閉g因爲JVM RPC服務器已關閉 *服務器關閉

回答

1

最近的變化(從週四9月2日)打破了例子。修正方法是在start()方法的末尾添加server.awaitTermination(),這將阻止JVM退出。您還需要將start()main()標記爲throws InterruptedException。我讓a GitHub issue跟蹤更新示例。

+0

解決了我的問題,謝謝... –