首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > windows >

windows 停 thrift的安装和生成

2013-10-12 
windows 下 thrift的安装和生成1 downloadhttp://thrift.apache.org/download/2 example 文件struct UserP

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


热点排行