You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.3 KiB
61 lines
1.3 KiB
3 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"log"
|
||
|
|
||
|
"github.com/go-kratos/kratos/examples/helloworld/helloworld"
|
||
|
"github.com/go-kratos/kratos/v2"
|
||
|
"github.com/go-kratos/kratos/v2/transport"
|
||
|
"github.com/go-kratos/kratos/v2/transport/grpc"
|
||
|
"github.com/go-kratos/kratos/v2/transport/http"
|
||
|
)
|
||
|
|
||
|
// go build -ldflags "-X main.Version=x.y.z"
|
||
|
var (
|
||
|
// Name is the name of the compiled software.
|
||
|
Name = "helloworld"
|
||
|
// Version is the version of the compiled software.
|
||
|
Version = "v1.0.0"
|
||
|
)
|
||
|
|
||
|
// server is used to implement helloworld.GreeterServer.
|
||
|
type server struct {
|
||
|
helloworld.UnimplementedGreeterServer
|
||
|
}
|
||
|
|
||
|
// SayHello implements helloworld.GreeterServer
|
||
|
func (s *server) SayHello(ctx context.Context, in *helloworld.HelloRequest) (*helloworld.HelloReply, error) {
|
||
|
info, _ := kratos.FromContext(ctx)
|
||
|
if tr, ok := transport.FromServerContext(ctx); ok {
|
||
|
tr.ReplyHeader().Set("app_name", info.Name())
|
||
|
}
|
||
|
return &helloworld.HelloReply{Message: fmt.Sprintf("Hello %s", in.Name)}, nil
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
grpcSrv := grpc.NewServer(
|
||
|
grpc.Address(":9000"),
|
||
|
)
|
||
|
httpSrv := http.NewServer(
|
||
|
http.Address(":8000"),
|
||
|
)
|
||
|
|
||
|
s := &server{}
|
||
|
helloworld.RegisterGreeterServer(grpcSrv, s)
|
||
|
helloworld.RegisterGreeterHTTPServer(httpSrv, s)
|
||
|
|
||
|
app := kratos.New(
|
||
|
kratos.Name(Name),
|
||
|
kratos.Server(
|
||
|
httpSrv,
|
||
|
grpcSrv,
|
||
|
),
|
||
|
)
|
||
|
|
||
|
if err := app.Run(); err != nil {
|
||
|
log.Fatal(err)
|
||
|
}
|
||
|
}
|