The Java gRPC implementation. HTTP/2 based RPC
Go to file
nmittler e82a000835 Removing java examples from grpc-common 2015-02-25 11:03:42 -08:00
README.md Remove superfluous link to protobuf install 2015-02-24 15:57:30 -08:00

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'

3 Clone this repo, if you've not already done so.

$ cd <path/to/your/working_dir>
$ git clone https://github.com/grpc/grpc-common
$ cd grpc-common/java  # switch to this directory

4 Build the samples

$ # from this directory
$ mvn package

TRY IT!

  • Run the server
$ # from this directory
$ ./run_greeter_server.sh &
  • Run the client
$ # from this directory
$ ./run_greeter_client.sh