1,关于grpc-go
golang 可以可以做grpc的服务端和客户端。
官网的文档:
http://www.grpc.io/docs/quickstart/go.html
https://github.com/grpc/grpc-go
和之前写的java的grpc客户端调用相同。也需要使用protobuf的配置文件。
但是golang下面的类库非常的简单,而且golang的性能也很强悍呢。
有些简单的业务逻辑真的可以使用golang进行开发。
性能强悍而且,消耗的资源也很小。java感觉上已经非常的臃肿了。
项目已经上传到github上面了。
https://github.com/freewebsys/grpc-go-demo
2,生成代码
定义proto文件:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 1syntax = "proto3";
2package helloworld;
3
4// The greeting service definition.
5service Greeter {
6 // Sends a greeting
7 rpc SayHello (HelloRequest) returns (HelloReply) {}
8}
9
10// The request message containing the user's name.
11message HelloRequest {
12 string name = 1;
13}
14
15// The response message containing the greetings
16message HelloReply {
17 string message = 1;
18}
19
3,生成代码,服务端,客户端调用
cd src/helloworld
protoc -I ./ helloworld.proto –go_out=plugins=grpc:.
会生成一个go的helloworld.pb.go 文件。里面包括了grpc的远程调用和protobuf的序列化。
server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39 1package main
2
3import (
4 "log"
5 "net"
6 "golang.org/x/net/context"
7 "google.golang.org/grpc"
8 pb "github.com/freewebsys/grpc-go-demo/src/helloworld"
9 "google.golang.org/grpc/reflection"
10 "fmt"
11)
12
13const (
14 port = ":50051"
15)
16
17// server is used to implement helloworld.GreeterServer.
18type server struct{}
19
20// SayHello implements helloworld.GreeterServer
21func (s *server) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) {
22 fmt.Println("######### get client request name :"+in.Name)
23 return &pb.HelloReply{Message: "Hello " + in.Name}, nil
24}
25
26func main() {
27 lis, err := net.Listen("tcp", port)
28 if err != nil {
29 log.Fatalf("failed to listen: %v", err)
30 }
31 s := grpc.NewServer()
32 pb.RegisterGreeterServer(s, &server{})
33 // Register reflection service on gRPC server.
34 reflection.Register(s)
35 if err := s.Serve(lis); err != nil {
36 log.Fatalf("failed to serve: %v", err)
37 }
38}
39
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36 1package main
2
3import (
4 "log"
5 "os"
6 "golang.org/x/net/context"
7 "google.golang.org/grpc"
8 pb "github.com/freewebsys/grpc-go-demo/src/helloworld"
9)
10
11const (
12 address = "localhost:50051"
13 defaultName = "world"
14)
15
16func main() {
17 // Set up a connection to the server.
18 conn, err := grpc.Dial(address, grpc.WithInsecure())
19 if err != nil {
20 log.Fatalf("did not connect: %v", err)
21 }
22 defer conn.Close()
23 c := pb.NewGreeterClient(conn)
24
25 // Contact the server and print out its response.
26 name := defaultName
27 if len(os.Args) > 1 {
28 name = os.Args[1]
29 }
30 r, err := c.SayHello(context.Background(), &pb.HelloRequest{Name: name})
31 if err != nil {
32 log.Fatalf("could not greet: %v", err)
33 }
34 log.Printf("####### get server Greeting response: %s", r.Message)
35}
36
4,运行服务端&客户端代码
go run server/main.go
go run clinet/main.go
同时,可以使用java的客户端和服务端 <<===>> go的服务端客户端
相互调用。
5,总结
本文的原文连接是: http://blog.csdn.net/freewebsys/article/details/59483427 未经博主允许不得转载。
博主地址是:http://blog.csdn.net/freewebsys
grpc 服务的远程调用还是非常的简单的。
但是这个只是一个helloworld ,真正要在企业内部使用的时候还需要一个注册中心。
管理所有的服务。初步计划使用 consul 存储数据。
因为consul 上面集成了非常多的好东西。还有个简单的可视化的界面。
比etcd功能多些。但是性能上面差一点。不过也非常强悍了。
企业内部使用的注册中心,已经足够了。