用netty 实现一个rpc框架

本文介绍了一个基于Netty的轻量级RPC框架CheetRpc,讲解了服务端注册与监听、客户端单机和Zookeeper多主机模式的调用示例,并提供了GitHub链接。适合学习者理解Netty在RPC中的应用。
摘要由CSDN通过智能技术生成
  • CheetRpc

  • 基于netty实现的一个简易rpc 框架,会陆续完成 主要是用来学习netty

  • 使用 服务端

public class RpcImpl{


    public int GetRandom(int a,int b){
      return   a-b;
    }

    public int Add(int a, int b) {
        return a+b;
    }
}

public class Server {
    public static void main(String[] args) {
        CheetRpcServer ser=new CheetRpcServerImpl();
        ser.Rigist(RpcImpl.class);

        ser.ListenServer(8080);
    }
}

客户端

  • 单机模式

CheetRpcClientImpl client=new CheetRpcClientImpl();

     
        client.SetDiscovery(new StandaloneDiscovery("ip",port));


        Object call = client.Call(".RpcImpl","GetRandom", 1, 2);

        System.out.println(call.toString());

         call = client.Call(".RpcImpl","Add", 1, 2);

        System.out.println(call.toString());


        call = client.Call(".RpcImpl","Add", 1, 2);

        System.out.println(call.toString());
  • zookeeper 多主机模式

    • 我们可以启动多个服务端
    • 但是前提需要手动写入节点到zookeeper 中
    • 列如 /rpc_zk/127.0.0.1:8080 、/rpc_zk/127.0.0.1:8081
    • 我们分别启动8080 服务和8081 服务
         CheetRpcClientImpl client=new CheetRpcClientImpl();
    
        //load () 选择负载均衡算法
        ZookeeperConfig rpc_zk = ZookeeperConfig.builder().load(new Pollingbalancing())
                .ServerNode("/rpc_zk")
                .zkAddr("127.0.0.1:9000").build();
    
        client.SetDiscovery(new ZookeeperDisovery(rpc_zk));
    
    
        Object call = client.Call(".RpcImpl","GetRandom", 1, 2);
    
        System.out.println(call.toString());
    
         call = client.Call(".RpcImpl","Add", 1, 2);
    
        System.out.println(call.toString());
    
    
        call = client.Call(".RpcImpl","Add", 1, 2);
    
        System.out.println(call.toString());
    
  • 项目地址

  • github 地址

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值