基本信息
源码名称:thrift开发入门,php客户端调用java服务方,实现跨语言调用
源码大小:6.96M
文件格式:.rar
开发语言:PHP
更新时间:2023-11-22
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
thrift开发入门,php客户端调用java服务方,实现跨语言调用
压缩包分为三个部分,java工程(java的服务方,和java客户端) php工程,php的客户端 linux环境的服务方部署包以及脚本 其中myserver.tar.gz压缩包是linux环境的部署包, 在linux环境先解压, tar -zxvf myserver.tar.gz ...

.
├── thrift (1)
│   ├── java
│   │   └── myserver
│   │       ├── Hello.thrift
│   │       ├── pom.xml
│   │       ├── src
│   │       │   ├── main
│   │       │   │   ├── java
│   │       │   │   │   ├── HelloServiceClient.java
│   │       │   │   │   ├── HelloServiceImpl.java
│   │       │   │   │   ├── HelloServiceServer.java
│   │       │   │   │   └── hellodemo
│   │       │   │   │       └── Hello.java
│   │       │   │   └── resources
│   │       │   └── test
│   │       │       ├── java
│   │       │       └── resources
│   │       ├── target
│   │       ├── thrift.exe
│   │       └── 依赖的包
│   │           ├── com.springsource.org.apache.httpcomponents.httpcore-4.1.jar
│   │           ├── commons-codec-1.2.jar
│   │           ├── commons-codec-1.4-sources.jar
│   │           ├── commons-httpclient-3.0.jar
│   │           ├── commons-lang-2.4.jar
│   │           ├── commons-logging-1.0.3.jar
│   │           ├── commons-logging-1.1.1-sources.jar
│   │           ├── httpclient-4.2.5.jar
│   │           ├── httpcore-4.2.4.jar
│   │           ├── junit-4.4.jar
│   │           ├── libthrift-0.9.2.jar
│   │           ├── log4j-1.2.14.jar
│   │           ├── servlet-api-6.0.43.jar
│   │           ├── slf4j-api-1.5.8.jar
│   │           ├── slf4j-log4j12-1.5.8.jar
│   │           └── slf4j-simple-1.5.8.jar
│   ├── php
│   │   └── thrift-java-php
│   │       ├── Hello.thrift
│   │       ├── php
│   │       │   ├── gen-php
│   │       │   │   └── hellodemo
│   │       │   │       ├── Hello.php
│   │       │   │       └── Types.php
│   │       │   ├── php
│   │       │   │   └── ClientDemo.php
│   │       │   ├── phplib
│   │       │   │   └── lib
│   │       │   │       └── Thrift
│   │       │   │           ├── Base
│   │       │   │           │   └── TBase.php
│   │       │   │           ├── ClassLoader
│   │       │   │           │   └── ThriftClassLoader.php
│   │       │   │           ├── Exception
│   │       │   │           │   ├── TApplicationException.php
│   │       │   │           │   ├── TException.php
│   │       │   │           │   ├── TProtocolException.php
│   │       │   │           │   └── TTransportException.php
│   │       │   │           ├── Factory
│   │       │   │           │   ├── TBinaryProtocolFactory.php
│   │       │   │           │   ├── TCompactProtocolFactory.php
│   │       │   │           │   ├── TJSONProtocolFactory.php
│   │       │   │           │   ├── TProtocolFactory.php
│   │       │   │           │   ├── TStringFuncFactory.php
│   │       │   │           │   └── TTransportFactory.php
│   │       │   │           ├── Protocol
│   │       │   │           │   ├── JSON
│   │       │   │           │   │   ├── BaseContext.php
│   │       │   │           │   │   ├── ListContext.php
│   │       │   │           │   │   ├── LookaheadReader.php
│   │       │   │           │   │   └── PairContext.php
│   │       │   │           │   ├── TBinaryProtocol.php
│   │       │   │           │   ├── TBinaryProtocolAccelerated.php
│   │       │   │           │   ├── TCompactProtocol.php
│   │       │   │           │   ├── TJSONProtocol.php
│   │       │   │           │   ├── TMultiplexedProtocol.php
│   │       │   │           │   ├── TProtocol.php
│   │       │   │           │   └── TProtocolDecorator.php
│   │       │   │           ├── Serializer
│   │       │   │           │   └── TBinarySerializer.php
│   │       │   │           ├── Server
│   │       │   │           │   ├── TForkingServer.php
│   │       │   │           │   ├── TServer.php
│   │       │   │           │   ├── TServerSocket.php
│   │       │   │           │   ├── TServerTransport.php
│   │       │   │           │   └── TSimpleServer.php
│   │       │   │           ├── StringFunc
│   │       │   │           │   ├── Core.php
│   │       │   │           │   ├── Mbstring.php
│   │       │   │           │   └── TStringFunc.php
│   │       │   │           ├── TMultiplexedProcessor.php
│   │       │   │           ├── Transport
│   │       │   │           │   ├── TBufferedTransport.php
│   │       │   │           │   ├── TCurlClient.php
│   │       │   │           │   ├── TFramedTransport.php
│   │       │   │           │   ├── THttpClient.php
│   │       │   │           │   ├── TMemoryBuffer.php
│   │       │   │           │   ├── TNullTransport.php
│   │       │   │           │   ├── TPhpStream.php
│   │       │   │           │   ├── TSocket.php
│   │       │   │           │   ├── TSocketPool.php
│   │       │   │           │   └── TTransport.php
│   │       │   │           └── Type
│   │       │   │               ├── TConstant.php
│   │       │   │               ├── TMessageType.php
│   │       │   │               └── TType.php
│   │       │   └── readme.txt
│   │       └── thrift.exe
│   ├── 服务部署
│   │   ├── myserver.tar.gz
│   │   └── 启动说明.txt
│   └── 启动说明.txt
└── thrift开发入门,php客户端调用java服务方,实现跨语言调用.rar

34 directories, 79 files