原創(chuàng)文章,歡迎轉(zhuǎn)載。轉(zhuǎn)載請(qǐng)注明:轉(zhuǎn)載自IT人故事會(huì),謝謝!
原文鏈接地址:『高級(jí)篇』docker之Python開發(fā)信息服務(wù)(11)創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、網(wǎng)站制作、共青城網(wǎng)絡(luò)推廣、成都微信小程序、共青城網(wǎng)絡(luò)營(yíng)銷、共青城企業(yè)策劃、共青城品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供共青城建站搭建服務(wù),24小時(shí)服務(wù)熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.com
信息服務(wù)準(zhǔn)備用python來寫,在現(xiàn)有的idea中添加python的模塊。源碼:https://github.com/limingios/msA-docker
安裝后重新idea。
開始我用idea寫python,下載個(gè)插件都費(fèi)勁,我換成了pycharm來寫美滋滋
# coding: utf-8
from message.api import MessageService
from thrift.transport import TSocket
from thrift.transport import TTransport
from thrift.protocol import TBinaryProtocol
from thrift.server import TServer
class MessageServiceHandler:
def sendMobileMessage(self, mobile, message):
print ("sendMobileMessage, mobile:"+mobile+", message:"+message)
return True
def sendEmailMessage(self, email, message):
print ("sendEmailMessage, email:"+email+", message:"+message)
return True
if __name__ == '__main__':
handler = MessageServiceHandler()
processor = MessageService.Processor(handler)
transport = TSocket.TServerSocket(None, "9090")
tfactory = TTransport.TFramedTransportFactory()
pfactory = TBinaryProtocol.TBinaryProtocolFactory()
server = TServer.TSimpleServer(processor, transport, tfactory, pfactory)
print ("python thrift server start")
server.serve()
print ("python thrift server exit")
都是根據(jù)thrift文件,生成對(duì)應(yīng)的上級(jí)目錄
thrift --gen py -out ../ message.thrift thrift --gen java -out ../ message.thrift
PS:thrift的開發(fā)流程是: 先定義thrift的文件,然后通過命令生成對(duì)應(yīng)的python代碼。通過實(shí)現(xiàn)定義的thrift方法,來完成thrift的調(diào)用。