https://thrift.apache.org/download
brew install bison
export PATH="$(brew --prefix bison)/bin:$PATH"
brew install thrift
export PATH="$(brew --prefix thrift)/bin:$PATH"
thrift --gen <language> <Thrift filename>
namespace java top.lilixin.thrift.service
service GreetingService {
string sayHello(1:string name)
}
thrift -gen java hello.thrift