问题描述
我正在尝试使用https://github.com/grpc-ecosystem/grpc-gateway,但是当我尝试运行
protoc -I/usr/local/include -I. -I${GOPATH}/src -I${GOPATH}/src/github.com/grpc-ecosystem/grpc-gateway/third_party/googleapis --go_out=plugins=grpc,paths=source_relative:./ example/example.proto
错误src / github.com / grpc-ecosystem / grpc-gateway / third_party / googleapis:警告:目录不存在。
为解决此问题,我手动携带了必要的文件,但是我觉得这是不必要的,有一种方法可以使此文件自动执行,
我跑过
go get -u github.com/grpc-ecosystem/grpc-gateway/
但还是没办法
解决方法
您要下载的原型是来自此模块的
env GO111MODULE=on go get github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2
,
看看这个(摘自Dockerfile
):
ARG VERS="3.13.0"
ARG ARCH="linux-x86_64"
RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v${VERS}/protoc-${VERS}-${ARCH}.zip --output-document=./protoc-${VERS}-${ARCH}.zip && \
apt update && apt install -y unzip && \
unzip -o protoc-${VERS}-${ARCH}.zip -d protoc-${VERS}-${ARCH} && \
mv protoc-${VERS}-${ARCH}/bin/* /usr/local/bin && \
mv protoc-${VERS}-${ARCH}/include/* /usr/local/include && \
go get -u github.com/golang/protobuf/protoc-gen-go && \
go get -u github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway
ARG REPO="..."
ARG MODULE="github.com/${REPO}"
# Generates the Golang protobuf files
# NB Uses `go list` to determine the correct Modules directory for the package (!) containing Google APIs protos
RUN protoc \
--proto_path=. \
--proto_path=$(go list -f '{{ .Dir }}' -m github.com/grpc-ecosystem/grpc-gateway)/third_party/googleapis \
--go_out=plugins=grpc,module=${MODULE}:. \
./protos/*.proto
在构建使用gRPC网关的基于gRPC的解决方案时,我经常使用此代码段。
第一个RUN
获得protoc
,protoc-gen-go
和-protoc-gen-grpc-gateway
。
第二个RUN
使用go list
来标识已安装的grpc-gateway
模块,并将protoc
指向该模块。