1、安装 protoc
- 在该链接下下载protoc-3.3.0-win32.zip的包
- 将文件解压到某一文件夹
- 将解压出来的文件夹下的 /bin/protoc.exe 二进制的路径添加到环境变量中
2、准备protobuf模块以及插件
# protoc-gen-go是用来将protobuf的的代码转换成go语言代码的一个插件
$ go get -u github.com/golang/protobuf/protoc-gen-go
# proto是protobuf在golang中的接口模块
$ go get -u github.com/golang/protobuf/proto
3、进入文件所在目录
protoc --go_out=. test.proto
4、示例
新建test.proto(windows下 idea安装了protobuf support插件,创建文件还是找到类型,我改用sublime创建到相应路径下了。)
syntax = "proto2";
package tutorial;
message Person {
required string name = 1;
required int32 age = 2;
optional string email = 3;
}
}
image.png
image.png
网友评论