Lisa Carey f3bd7a477d Added client implementation details %!s(int64=10) %!d(string=hai) anos
..
android 2cdee1fbfa Fix Android example %!s(int64=10) %!d(string=hai) anos
src 5aa9eeba54 Removes the unused protos, updates the README to reflect the protos in use %!s(int64=10) %!d(string=hai) anos
README.md dd3b54d639 updated with new example code location and build %!s(int64=10) %!d(string=hai) anos
javatutorial.md f3bd7a477d Added client implementation details %!s(int64=10) %!d(string=hai) anos
pom.xml aa7afd63a8 Moves java overview project to a subdirectory %!s(int64=10) %!d(string=hai) anos
run_greeter_client.sh a16a4d551f Complete the change s/Greetings/Greeter %!s(int64=10) %!d(string=hai) anos
run_greeter_server.sh a16a4d551f Complete the change s/Greetings/Greeter %!s(int64=10) %!d(string=hai) anos

README.md

gRPC in 3 minutes (Java)

PREREQUISITES

INSTALL

1 Clone the gRPC Java git repo

$ cd <path/to/your/working_dir>
$ git clone https://github.com/grpc/grpc-java

2 Install gRPC Java, as described in How to Build

$ # from this dir
$ cd grpc-java
$ # follow the instructions in 'How to Build'

TRY IT!

Our Gradle build file simplifies building and running the examples.

You can build and run the Hello World server used in Getting started from the grpc-java root folder with:

$ ./gradlew :grpc-examples:helloWorldServer

and in another terminal window confirm that it receives a message.

$  ./gradlew :grpc-examples:helloWorldClient

TUTORIAL

You can find a more detailed tutorial in gRPC Basics: Java.