grpc-java/examples
Kun Zhang 111f6dd81e Allow people to skip codegen compilation.
Resolves #357

- Add project property ``grpc.skip.codegen``, which is false by default.
  People who don't change the codegen nor the proto files can set it to
  true so that they don't need to set up C++ compilation.
- Check in all generated files under ``src/generated``.
2015-05-06 09:56:40 -07:00
..
src Allow people to skip codegen compilation. 2015-05-06 09:56:40 -07:00
README.md Update README.md 2015-02-26 05:21:03 -08:00
build.gradle Allow people to skip codegen compilation. 2015-05-06 09:56:40 -07:00

README.md

grpc Examples

In order to run the examples simply execute one of the gradle tasks routeGuideServer, routeGuideClient, helloWorldServer, or helloWorldClient.

For example, say you want to play around with the route guide examples. First you want to start the server and then have the client connect to it and let the good times roll.

Assuming you are in the grpc-java root folder you would first start the route guide server by running

$ ./gradlew :grpc-examples:routeGuideServer

and in a different terminal window then run the route guide client by typing

$ ./gradlew :grpc-examples:routeGuideClient

That's it!

Please refer to [Getting Started Guide for Java] (https://github.com/grpc/grpc-common/blob/master/java/javatutorial.md) for more information.