同一端口同一方法提供grpc和http流量支持

項目地址 https://github.com/lesterhnu/grpcdemo

安裝工具鏈

go install google.golang.org/protobuf/cmd/protoc-gen-go

go install google.golang.org/grpc/cmd/protoc-gen-go-grpc

go install github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway

編寫proto

// hello.proto
syntax = "proto3";
package pb;

option go_package = "/pb";

service Hello {
  rpc SayHello(HelloRequest) returns(HelloResponse){}
}
message HelloRequest{
  string msg = 1;
}
message HelloResponse{
  string msg = 1;
}

生成pb.go

生成的pb.go在proto目錄下斗搞,包名為 hello.proto中 option go_package指定

# 在proto目錄下執(zhí)行
protoc -I=.  --go_out=. --go_opt=paths=source_relative \
--go-grpc_out=. --go-grpc_opt=paths=source_relative \
--grpc-gateway_out=. --grpc-gateway_opt=paths=source_relative  \
./*.proto

實現(xiàn)server的業(yè)務(wù)邏輯

// 創(chuàng)建文件 server/hello.go
package server

import (
  "context"
  pb "grpcdemo/proto"
)

type HelloServer struct {
  pb.UnimplementedHelloServer
}

func NewHelloServer() *HelloServer {
  return &HelloServer{}
}
func (h *HelloServer) Greet(ctx context.Context, req *pb.HelloRequest) (*pb.HelloResponse, error) {
  return &pb.HelloResponse{Msg: "test"}, nil
}

main.go 文件中啟動服務(wù)

package main

import (
  "context"
  "github.com/grpc-ecosystem/grpc-gateway/runtime"
  "golang.org/x/net/http2"
  "golang.org/x/net/http2/h2c"
  "google.golang.org/grpc"
  "google.golang.org/grpc/credentials/insecure"
  "google.golang.org/grpc/reflection"
  pb "grpcdemo/proto"
  "grpcdemo/server"
  "log"
  "net/http"
  "strings"
)

const PORT = "8888"

func main() {
  err := RunServer()
  if err != nil {
    panic(err)
  }
}

func RunServer() error {
  httpMux := runHttpServer()
  grpcS := runGrpcServer()
  gatewayMux := runGatewayServer()

  httpMux.Handle("/", gatewayMux)

  return http.ListenAndServe(":"+PORT, grpcHandlerFunc(grpcS, httpMux))
}
func runGrpcServer() *grpc.Server {
  s := grpc.NewServer()
  pb.RegisterHelloServer(s, server.NewHelloServer())
  reflection.Register(s)
  return s
}
func runHttpServer() *http.ServeMux {
  s := http.NewServeMux()
  return s
}
func runGatewayServer() *runtime.ServeMux {
  endpoint := ":" + PORT
  gwmux := runtime.NewServeMux()
  options := []grpc.DialOption{grpc.WithTransportCredentials(insecure.NewCredentials())}
  err := pb.RegisterHelloHandlerFromEndpoint(context.Background(), gwmux, endpoint, options)
  if err != nil {
    log.Fatal(err)
  }
  return gwmux
}
func grpcHandlerFunc(grpcServer *grpc.Server, httpHandler http.Handler) http.Handler {
  return h2c.NewHandler(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    if r.ProtoMajor == 2 && strings.HasPrefix(r.Header.Get("Content-Type"), "application/grpc") {
      grpcServer.ServeHTTP(w, r)
    } else {
      httpHandler.ServeHTTP(w, r)
    }
  }), &http2.Server{})
}

測試響應(yīng)

http調(diào)用

curl -X POST http://localhost:8888/sayHello
---
{
  "msg": "hello !"
}

grpc調(diào)用

新建client/main.go文件

// client/main.go
package main

import (
  "context"
  "google.golang.org/grpc"
  "google.golang.org/grpc/credentials/insecure"
  pb "grpcdemo/proto"
  "log"
)

func main() {
  conn, _ := grpc.Dial("localhost:8888", grpc.WithTransportCredentials(insecure.NewCredentials()))
  c := pb.NewHelloClient(conn)
  ctx := context.Background()
  resp, err := c.SayHello(ctx, &pb.HelloRequest{Msg: "123"})
  if err != nil {
    log.Println(err)
    return
  }
  log.Println(resp.Msg)
}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市黑竞,隨后出現(xiàn)的幾起案子寿谴,更是在濱河造成了極大的恐慌锁右,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,376評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件讶泰,死亡現(xiàn)場離奇詭異咏瑟,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)痪署,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評論 2 385
  • 文/潘曉璐 我一進(jìn)店門码泞,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人狼犯,你說我怎么就攤上這事余寥。” “怎么了悯森?”我有些...
    開封第一講書人閱讀 156,966評論 0 347
  • 文/不壞的土叔 我叫張陵宋舷,是天一觀的道長。 經(jīng)常有香客問我瓢姻,道長祝蝠,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,432評論 1 283
  • 正文 為了忘掉前任幻碱,我火速辦了婚禮绎狭,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘褥傍。我一直安慰自己儡嘶,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,519評論 6 385
  • 文/花漫 我一把揭開白布摔桦。 她就那樣靜靜地躺著社付,像睡著了一般承疲。 火紅的嫁衣襯著肌膚如雪邻耕。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,792評論 1 290
  • 那天燕鸽,我揣著相機(jī)與錄音兄世,去河邊找鬼。 笑死啊研,一個胖子當(dāng)著我的面吹牛御滩,可吹牛的內(nèi)容都是我干的鸥拧。 我是一名探鬼主播,決...
    沈念sama閱讀 38,933評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼削解,長吁一口氣:“原來是場噩夢啊……” “哼富弦!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起氛驮,我...
    開封第一講書人閱讀 37,701評論 0 266
  • 序言:老撾萬榮一對情侶失蹤腕柜,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后矫废,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體盏缤,經(jīng)...
    沈念sama閱讀 44,143評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,488評論 2 327
  • 正文 我和宋清朗相戀三年蓖扑,在試婚紗的時候發(fā)現(xiàn)自己被綠了唉铜。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,626評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡律杠,死狀恐怖潭流,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情俩功,我是刑警寧澤幻枉,帶...
    沈念sama閱讀 34,292評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站诡蜓,受9級特大地震影響熬甫,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蔓罚,卻給世界環(huán)境...
    茶點故事閱讀 39,896評論 3 313
  • 文/蒙蒙 一椿肩、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧豺谈,春花似錦郑象、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至丽惭,卻和暖如春击奶,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背责掏。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工柜砾, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人换衬。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓痰驱,卻偏偏與公主長得像证芭,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子担映,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,494評論 2 348

推薦閱讀更多精彩內(nèi)容