Thrift环境搭建
步骤
下载thfift
https://thrift.apache.org/download安装编译器
注意事项
brew install gccbrew install bison
export PATH="$(brew --prefix bison)/bin:$PATH"
编写.thrift 文件
Last updated
https://thrift.apache.org/downloadbrew install gccbrew install bison
export PATH="$(brew --prefix bison)/bin:$PATH"
Last updated
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