grpc-java/examples
Eric Anderson b1d72e5c3e all: Bump protobuf to 3.0.2, to fix protoc in CI
protoc no longer builds in 3.0.0 because auto-download of the gmock zip
now fails. 3.0.2 has a fix to autogen:
bba446bbf2

All that was strictly necessary was to update .travis.yml and
buildscripts/, but it helps our sanity to keep the rest of the protobuf
versions in sync. Lite is left on its existing version, because it did
not see a bump of neither the java library nor the protoc plugin.
2016-09-29 10:25:31 -07:00
..
android all: Bump protobuf to 3.0.2, to fix protoc in CI 2016-09-29 10:25:31 -07:00
gradle/wrapper Update to Gradle 2.14 2016-08-04 10:03:57 -07:00
src/main examples: fix bound method not same as in service descriptor for HelloJsonServer 2016-09-15 17:24:28 -07:00
thrift Support Thrift Messages 2016-07-28 08:48:27 -07:00
README.md Fix examples README 2016-07-27 16:50:19 -07:00
build.gradle all: Bump protobuf to 3.0.2, to fix protoc in CI 2016-09-29 10:25:31 -07:00
gradlew examples: Provide Maven and Gradle build files 2016-07-11 09:20:25 -07:00
gradlew.bat examples: Provide Maven and Gradle build files 2016-07-11 09:20:25 -07:00
pom.xml all: Bump protobuf to 3.0.2, to fix protoc in CI 2016-09-29 10:25:31 -07:00
settings.gradle Support Thrift Messages 2016-07-28 08:48:27 -07:00

README.md

grpc Examples

The examples require grpc-java to already be built. You are strongly encouraged to check out a git release tag, since there will already be a build of grpc available. Otherwise you must follow COMPILING.

To build the examples, run in this directory:

$ ./gradlew installDist

This creates the scripts hello-world-server, hello-world-client, route-guide-server, and route-guide-client in the build/install/examples/bin/ directory that run the examples. Each example requires the server to be running before starting the client.

For example, to try the hello world example first run:

$ ./build/install/examples/bin/hello-world-server

And in a different terminal window run:

$ ./build/install/examples/bin/hello-world-client

That's it!

Please refer to gRPC Java's README and tutorial for more information.

Maven

If you prefer to use Maven:

$ mvn verify
$ # Run the server
$ mvn exec:java -Dexec.mainClass=io.grpc.examples.helloworld.HelloWorldServer
$ # In another terminal run the client
$ mvn exec:java -Dexec.mainClass=io.grpc.examples.helloworld.HelloWorldClient