读书人

windows 停 thrift的安装和生成

发布时间: 2013-10-12 11:54:04 作者: rapoo

windows 下 thrift的安装和生成
1 download
http://thrift.apache.org/download/

2 example 文件
struct UserProfile {
1: i32 uid,
2: string name,
3: string blurb
}
service UserStorage {
void store(1: UserProfile user),
UserProfile retrieve(1: i32 uid)
}
保存为 example.thrift文件

3、生成 java文件
命令格式:
thrift --gen <language> <Thrift filename>
thrift-0.9.1.exe --gen java example.thrift


读书人网 >windows

热点推荐