Java中使用Thrift

Java中使用Thrift

Thrift建立(server端)

定义一个thrift接口:

java 复制代码
service ThriftService {
    void myFunc();
}

通过 thrift compiler 生成 java 代码

java 复制代码
thrift --gen java ThriftService.thrift

生成了Thrift的接口类:

java 复制代码
public class ThriftService {
	// 同步和异步调用接口
    public interface Iface {...}
    public interface AsyncIface {...}
    
    // 接口的实现类(同步和异步)
    public static class Client {...}
    public static class AsyncClient {...}   
}

实现server端:

java 复制代码
public class Server {
    public static class ThriftServiceImpl implements ThriftService.Iface{
 
        @Override
        public String myFunc(String name) throws TException {
            return "My Thrift Function";
        }
    }
 
    public static void main(String[] args) throws TTransportException {
        // 获取实现
        ThriftServiceImpl impl= new ThriftServiceImpl();
        // 接口与实现类的绑定关系在这里完成
        HelloWorldService.Processor<ThriftServiceImpl> processor = new ThriftService.Processor<ThriftServiceImpl>(impl);
        // 构建服务器
        TServerTransport serverTransport = new TServerSocket(9090);
        TServer server = new TSimpleServer(new Args(serverTransport).processor(processor));
        server.serve();
    }
}

Thrift调用(client端)

client端可以直接调用接口,二不用关心具体的实现类。

1 直接建立thrift通信

java 复制代码
public class Client {
    public static void main(String[] args) throws TException {
        TTransport transport = new TSocket("localhost", 9090);
        transport.open();
        TProtocol protocol = new TBinaryProtocol(transport);
        ThriftService.Client client = new ThriftService.Client(protocol);
		client.myFunc();
        transport.close();
    }
}

或者:

java 复制代码
	TFastFramedTransport transport = new TFastFramedTransport(new TSocket(host, port));
	TBinaryProtocol protocol = new TBinaryProtocol(transport);
	SimpleSerice.Client client = new SimpleService.Client(protocol);
	try {
	    transport.open();
	    client.myFunc();
	} finally {
	    transport.close();
	}

通信层协议,使用TTransport接口来描述,Thrift 提供了几种 transport 类供使用:

  • TSocket:BIO
  • TFramedTransport:NIO
  • TMemoryTransport:内存I/O

需要注意的是,transport 客户端要和服务端对应,比如如果要对 NIO 模型的服务端进行调研,transport 就必须使用 TFramedTransport或TFastFramedTransport。

传输层协议,引用 transport 并提供 thrift 的序列化协议,Thrift 也提供了几种常用的传输协议:

  • TBinaryProtocol:二进制协议
  • TCompactProtocol:压缩格式
  • TJSONProtocol:JSON 协议

2 使用JDK动态代理

首先创建代理类,这里只需要引用 thrift 接口中的 Service 类,并通过引用发现内部 Client 类:

java 复制代码
public class ThriftClientProxy implements InvocationHandler {

    private Class clazz;
    private Class clientClazz;
    private String host;
    private int port;

    public Object newInstance(Class clazz, String host, int port) {
        this.clazz = clazz;
        this.host = host;
        this.port = port;
        this.clientClazz = Class.forName(classs.getName() + "$Client");

        return Proxy.newProxyInstance(
            getClass().getClassLoader(),
            clientClazz.getInterfaces(),
            this
        );
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        TFastFramedTransport transport = new TFastFramedTransport(new TSocket(host, port));
        TBinaryProtocol protocol = new TBinaryProtocol(transport);
        Class[] classes = {TProtocol.class};
        try {
            transport.open();
            return method.invoke(clientClazz.getConstructor(classes).newInstance(protocol), args);
        }
        finally {
            transport.close();
        }
    }
}

之后将相应的 Iface 注册到 IOC 容器中即可。

java 复制代码
@Configuration
public class ThriftClientConfiguration {

    @Value("${simple.service.host}")
    private String host;

    @Value("${simple.service.port}")
    private int port;

    @Bean
    public SimpleService.Iface thriftClient() {
        return (SimpleService.Iface) new ThriftClientProxy().newInstance(SimpleService.class, host, port);
    }
}

业务代码中只需要注入 SimpleService.Iface,并直接调用接口方法,而完全不需要关注内部逻辑实现。

相关推荐
林的快手4 分钟前
209.长度最小的子数组
java·数据结构·数据库·python·算法·leetcode
FeboReigns7 分钟前
C++简明教程(10)(初识类)
c语言·开发语言·c++
学前端的小朱8 分钟前
处理字体图标、js、html及其他资源
开发语言·javascript·webpack·html·打包工具
向阳121836 分钟前
mybatis 缓存
java·缓存·mybatis
上等猿43 分钟前
函数式编程&Lambda表达式
java
摇光931 小时前
js高阶-async与事件循环
开发语言·javascript·事件循环·宏任务·微任务
沐泽Mu1 小时前
嵌入式学习-QT-Day09
开发语言·qt·学习
蓝染-惣右介1 小时前
【23种设计模式·全精解析 | 行为型模式篇】11种行为型模式的结构概述、案例实现、优缺点、扩展对比、使用场景、源码解析
java·设计模式
小猿_001 小时前
C语言实现顺序表详解
c语言·开发语言
余~~185381628001 小时前
NFC 碰一碰发视频源码搭建技术详解,支持OEM
开发语言·人工智能·python·音视频