基于micro-rpc的流程
-
修改
web
项目
在main.go
文件中添加端口service := web.NewService( web.Name("go.micro.web.web"), web.Version("latest"), //1.添加端口 web.Address(":8080"), )
-
在
web
项目的html
添加静态资源 -
将
srv
项目的protobuf
导入web
项目的handler/handler.go
文件import ( example "micro/rpc/srv/proto/example" )
gprc升级
Web项目修改
在/handler/handler.go
文件中
- 在
ExampleCall
构造服务端并初始化server := grpc.NewService() server.Init()
- 替换原有服务的客户端
exampleClient := example.NewExampleService("go.micro.srv.srv", server.Client())
Srv项目修改
在main.go
文件main
函数构造服务端
service := grpc.NewService(
micro.Name("go.micro.srv.srv"),
micro.Version("latest"),
)