
使用DeepSeek和Claude绘制出高质量的SVG 图片
我们先启动一个kratos样例的http服务
在上节创建的helloworld项目目录执行
go run ./cmd/helloworld -conf configs/config.yaml
可以启动http服务。
我们打开 浏览器输入
http://localhost:8000/helloworld/1
会返回
可以发现样例运行成功了。
我们打开使用kratos建立的样例项目helloworld,
在 greeter.proto文件里有 下面一个路由
get: “/helloworld/{name}”
// Sends a hi
rpc SayHi (HelloRequest) returns (HelloReply) {
option (google.api.http) = {
get: "/hi/{name}"
};
}
写好后如下:
➜ make api
输出:
protoc --proto_path=./api \
--proto_path=./third_party \
--go_out=paths=source_relative:./api \
--go-http_out=paths=source_relative:./api \
--go-grpc_out=paths=source_relative:./api \
--openapi_out=fq_schema_naming=true,default_response=false:. \
api/helloworld/v1/error_reason.proto api/helloworld/v1/greeter.proto
如果执行make api 报错,比如提示,未安装 protoc-gen-go: program not found or is not executable,可以在 make api 执行之前,先执行一下 make init 安装一下kratos需要的依赖和插件。
此时我们可以看 greeter_http.pb.go 里面的代码,增加SayHi()如下:
我们查看 SayHello()接口的实现,发现在 internal/service/greeter.go
那我们实现SayHi()也同样在这样文件中。
我们在 SayHello()方法下,写入如下代码:
// SayHi implements helloworld.GreeterServer.
func (s *GreeterService) SayHi(ctx context.Context, in *v1.HelloRequest) (*v1.HelloReply, error) {
g, err := s.uc.CreateGreeter(ctx, &biz.Greeter{Hello: in.Name})
if err != nil {
return nil, err
}
return &v1.HelloReply{Message: "hi " + g.Hello}, nil
}
此时显示如下:
我们重新编译一下,
go run ./cmd/helloworld -conf configs/config.yaml
然后在浏览器中输入:http://localhost:8000/hi/1 展示如下:
我们第一个get接口写成功了。
// Say a hi
rpc Say (HelloRequest) returns (HelloReply) {
option (google.api.http) = {
post: "/say",
body: "*",
};
}
我们这里主要有两点修改
➜ make api
我们会发现greeter_http.pb.go文件中GreeterHTTPServer中多了一个 Say()
type GreeterHTTPServer interface {
Say(context.Context, *HelloRequest) (*HelloReply, error)
SayHello(context.Context, *HelloRequest) (*HelloReply, error)
SayHi(context.Context, *HelloRequest) (*HelloReply, error)
}
在internal/service/greeter.go中实现 Say()方法,代码如下:
// Say implements helloworld.GreeterServer.
func (s *GreeterService) Say(ctx context.Context, in *v1.HelloRequest) (*v1.HelloReply, error) {
g, err := s.uc.CreateGreeter(ctx, &biz.Greeter{Hello: in.Name})
if err != nil {
return nil, err
}
return &v1.HelloReply{Message: "say " + g.Hello}, nil
}
此时我们重启一下一下服务
go run ./cmd/helloworld -conf configs/config.yaml
然后模拟请求一下,成功了。