gorealis/vendor/git.apache.org/thrift.git/tutorial/java
Renan DelValle 8d445c1c77
Moving from govendor to dep, updated dependencies (#48)
* Moving from govendor to dep.

* Making the pull request template more friendly.

* Fixing akward space in PR template.

* goimports run on whole project using ` goimports -w $(find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./gen-go/*")`

source of command: https://gist.github.com/bgentry/fd1ffef7dbde01857f66
2018-01-07 13:13:47 -08:00
..
src Moving from govendor to dep, updated dependencies (#48) 2018-01-07 13:13:47 -08:00
build.xml Moving from govendor to dep, updated dependencies (#48) 2018-01-07 13:13:47 -08:00
Makefile.am Moving from govendor to dep, updated dependencies (#48) 2018-01-07 13:13:47 -08:00
README.md Moving from govendor to dep, updated dependencies (#48) 2018-01-07 13:13:47 -08:00

Thrift Java Tutorial

  1. Compile the Java library

    thrift/lib/java$ make or:

    thrift/lib/java$ ant

  2. Run the tutorial:

start server and client with one step:

thrift/tutorial/java$ make tutorial

or:

thrift/tutorial/java$ make tutorialserver
thrift/tutorial/java$ make tutorialclient

or:

thrift/tutorial/java$ ant tutorialserver
thrift/tutorial/java$ ant tutorialclient