日期:2014-05-16  浏览次数:20922 次

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