基本信息
源码名称:thriftTest java案例代码
源码大小:0.37M
文件格式:.zip
开发语言:Java
更新时间:2023-05-09
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
thriftTest java案例代码
windows上开发java thrift 的案例代码
文件清单
└── thriftTest
├── bin
│ └── com
│ └── zamplus
│ ├── server
│ │ ├── Client.class
│ │ ├── HelloImpl.class
│ │ └── Server.class
│ └── thrift
│ └── test
│ ├── Hello$AsyncClient$Factory.class
│ ├── Hello$AsyncClient$helloString_call.class
│ ├── Hello$AsyncClient.class
│ ├── Hello$AsyncIface.class
│ ├── Hello$Client$Factory.class
│ ├── Hello$Client.class
│ ├── Hello$helloString_args$_Fields.class
│ ├── Hello$helloString_args$helloString_argsStandardScheme.class
│ ├── Hello$helloString_args$helloString_argsStandardSchemeFactory.class
│ ├── Hello$helloString_args$helloString_argsTupleScheme.class
│ ├── Hello$helloString_args$helloString_argsTupleSchemeFactory.class
│ ├── Hello$helloString_args.class
│ ├── Hello$helloString_result$_Fields.class
│ ├── Hello$helloString_result$helloString_resultStandardScheme.class
│ ├── Hello$helloString_result$helloString_resultStandardSchemeFactory.class
│ ├── Hello$helloString_result$helloString_resultTupleScheme.class
│ ├── Hello$helloString_result$helloString_resultTupleSchemeFactory.class
│ ├── Hello$helloString_result.class
│ ├── Hello$Iface.class
│ ├── Hello$Processor$helloString.class
│ ├── Hello$Processor.class
│ └── Hello.class
├── lib
│ ├── libthrift-0.9.0.jar
│ ├── slf4j-api-1.7.5.jar
│ └── slf4j-simple-1.7.5.jar
├── src
│ └── com
│ └── zamplus
│ ├── server
│ │ ├── Client.java
│ │ ├── HelloImpl.java
│ │ └── Server.java
│ └── thrift
│ └── test
│ └── Hello.java
└── test.thrift
14 directories, 33 files
thriftTest java案例代码
windows上开发java thrift 的案例代码
文件清单
└── thriftTest
├── bin
│ └── com
│ └── zamplus
│ ├── server
│ │ ├── Client.class
│ │ ├── HelloImpl.class
│ │ └── Server.class
│ └── thrift
│ └── test
│ ├── Hello$AsyncClient$Factory.class
│ ├── Hello$AsyncClient$helloString_call.class
│ ├── Hello$AsyncClient.class
│ ├── Hello$AsyncIface.class
│ ├── Hello$Client$Factory.class
│ ├── Hello$Client.class
│ ├── Hello$helloString_args$_Fields.class
│ ├── Hello$helloString_args$helloString_argsStandardScheme.class
│ ├── Hello$helloString_args$helloString_argsStandardSchemeFactory.class
│ ├── Hello$helloString_args$helloString_argsTupleScheme.class
│ ├── Hello$helloString_args$helloString_argsTupleSchemeFactory.class
│ ├── Hello$helloString_args.class
│ ├── Hello$helloString_result$_Fields.class
│ ├── Hello$helloString_result$helloString_resultStandardScheme.class
│ ├── Hello$helloString_result$helloString_resultStandardSchemeFactory.class
│ ├── Hello$helloString_result$helloString_resultTupleScheme.class
│ ├── Hello$helloString_result$helloString_resultTupleSchemeFactory.class
│ ├── Hello$helloString_result.class
│ ├── Hello$Iface.class
│ ├── Hello$Processor$helloString.class
│ ├── Hello$Processor.class
│ └── Hello.class
├── lib
│ ├── libthrift-0.9.0.jar
│ ├── slf4j-api-1.7.5.jar
│ └── slf4j-simple-1.7.5.jar
├── src
│ └── com
│ └── zamplus
│ ├── server
│ │ ├── Client.java
│ │ ├── HelloImpl.java
│ │ └── Server.java
│ └── thrift
│ └── test
│ └── Hello.java
└── test.thrift
14 directories, 33 files