thrift编写服务端 客户端

雷顿大数据技术学院:http://www.leidun.site/


1 编写 thrift文件

文件名

helloworld.thrift

HelloWorld {
    ping()say(:msg)
}


使用命令 thrift --gen py hellowrold.thrift生成基础文件

生成结果目录格式如下

thrift.png


server.py


sys
sys.path.insert()
sys.path

helloworld HelloWorld
helloworld.ttypes *

thrift.transport TSocket
thrift.transport TTransport
thrift.protocol TBinaryProtocol
thrift.server TServer

HelloWorldHandler:
  ():
    (msg):
    ret = + msg
    ret
    ret

handler = HelloWorldHandler()
processor = HelloWorld.Processor(handler)
transport = TSocket.TServerSocket()
tfactory = TTransport.TBufferedTransportFactory()
pfactory = TBinaryProtocol.TBinaryProtocolFactory()

server = TServer.TSimpleServer(processortransporttfactorypfactory)

server.serve()



client.py


sys
sys.path.insert()

helloworld HelloWorld

thrift Thrift
thrift.transport TSocket
thrift.transport TTransport
thrift.protocol TBinaryProtocol

:
  transport = TSocket.TSocket()
  transport = TTransport.TBufferedTransport(transport)
  protocol = TBinaryProtocol.TBinaryProtocol(transport)
  client = HelloWorld.Client(protocol)
  transport.open()
  msg = client.say()
  + msg

  transport.close()

Thrift.TExceptionex:
  % (ex.message)


启动server clien

python server.py

python client.py

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值