博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
grpc(3):使用 golang 开发 grpc 服务端和客户端
阅读量:5963 次
发布时间:2019-06-19

本文共 2784 字,大约阅读时间需要 9 分钟。

1,关于grpc-go


golang 可以可以做grpc的服务端和客户端。

官网的文档:
和之前写的java的grpc客户端调用相同。也需要使用protobuf的配置文件。
但是golang下面的类库非常的简单,而且golang的性能也很强悍呢。
有些简单的业务逻辑真的可以使用golang进行开发。
性能强悍而且,消耗的资源也很小。java感觉上已经非常的臃肿了。
项目已经上传到github上面了。

2,生成代码


定义proto文件:

syntax = "proto3";package helloworld;// The greeting service definition.service Greeter {  // Sends a greeting  rpc SayHello (HelloRequest) returns (HelloReply) {}}// The request message containing the user's name.message HelloRequest {  string name = 1;}// The response message containing the greetingsmessage HelloReply {  string message = 1;}

3,生成代码,服务端,客户端调用

cd src/helloworld

protoc -I ./ helloworld.proto –go_out=plugins=grpc:.
会生成一个go的helloworld.pb.go 文件。里面包括了grpc的远程调用和protobuf的序列化。

server.go

package mainimport (    "log"    "net"    "golang.org/x/net/context"    "google.golang.org/grpc"    pb "github.com/freewebsys/grpc-go-demo/src/helloworld"    "google.golang.org/grpc/reflection"    "fmt")const (    port = ":50051")// server is used to implement helloworld.GreeterServer.type server struct{}// SayHello implements helloworld.GreeterServerfunc (s *server) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) {    fmt.Println("######### get client request name :"+in.Name)    return &pb.HelloReply{Message: "Hello " + in.Name}, nil}func main() {    lis, err := net.Listen("tcp", port)    if err != nil {        log.Fatalf("failed to listen: %v", err)    }    s := grpc.NewServer()    pb.RegisterGreeterServer(s, &server{})    // Register reflection service on gRPC server.    reflection.Register(s)    if err := s.Serve(lis); err != nil {
log.Fatalf("failed to serve: %v", err) }}

client.go

package mainimport (    "log"    "os"    "golang.org/x/net/context"    "google.golang.org/grpc"    pb "github.com/freewebsys/grpc-go-demo/src/helloworld")const (    address     = "localhost:50051"    defaultName = "world")func main() {    // Set up a connection to the server.    conn, err := grpc.Dial(address, grpc.WithInsecure())    if err != nil {        log.Fatalf("did not connect: %v", err)    }    defer conn.Close()    c := pb.NewGreeterClient(conn)    // Contact the server and print out its response.    name := defaultName    if len(os.Args) > 1 {        name = os.Args[1]    }    r, err := c.SayHello(context.Background(), &pb.HelloRequest{Name: name})    if err != nil {        log.Fatalf("could not greet: %v", err)    }    log.Printf("####### get server Greeting response: %s", r.Message)}

4,运行服务端&客户端代码


go run server/main.go

go run clinet/main.go

同时,可以使用java的客户端和服务端 <<===>> go的服务端客户端

相互调用。

5,总结


本文的原文连接是: 未经博主允许不得转载。

博主地址是:

grpc 服务的远程调用还是非常的简单的。

但是这个只是一个helloworld ,真正要在企业内部使用的时候还需要一个注册中心。
管理所有的服务。初步计划使用 consul 存储数据。
因为consul 上面集成了非常多的好东西。还有个简单的可视化的界面。
比etcd功能多些。但是性能上面差一点。不过也非常强悍了。
企业内部使用的注册中心,已经足够了。

你可能感兴趣的文章
springMVC 定时任务
查看>>
Mint8(ubuntu16.04) 搭建微信Web开发工具
查看>>
PostgreSQL数据类型-数据类型简介和布尔类型
查看>>
PostgreSQL数据类型-二进制数据和字符串数据类型与字符串函数
查看>>
shell 基础
查看>>
twisted的LineReceiver的接口定义
查看>>
浅解用PHP实现MVC
查看>>
MySQL常用操作
查看>>
Yxcms网站管理系统安装
查看>>
Nginx错误日志(error_log)配置及信息详解
查看>>
Computer-memory
查看>>
redis 实践笔记(初步)
查看>>
背道而驰or殊途同归?区块链与云计算未来趋势
查看>>
Spring整合JMS(四)——事务管理
查看>>
设计模式学习笔记(七)之模板方法模式(Template Method)
查看>>
我的友情链接
查看>>
主流原型工具可用性测试横向比较
查看>>
我的友情链接
查看>>
Guava——使用Preconditions做参数校验
查看>>
iSCSI存储用作Proxmox VE的LVM共享存储
查看>>