[序列化协议] --- protobuf

Posted Overboom

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[序列化协议] --- protobuf相关的知识,希望对你有一定的参考价值。

1. protobuf安装

// 下载 protoBuf:
$ git clone https://github.com/protocolbuffers/protobuf.git

//  安装依赖库
$ sudo apt-get install autoconf  automake  libtool curl make  g++  unzip libffi-dev -y

// 进入目录
$ cd protobuf/ 

// 自动生成configure配置文件:
$ ./autogen.sh 

// 配置环境:
$ ./configure

// 编译源代码(要有耐心!):
$ make 

// 安装
$ sudo make install

// 刷新共享库 (很重要的一步啊)

以上是关于[序列化协议] --- protobuf的主要内容,如果未能解决你的问题,请参考以下文章

[序列化协议] --- protobuf

ProtoBuf协议

idea使用Protobuf插件

Protobuf协议的Java应用例子

ProtoBuf及整合到SpringBoot

protobuf--数据序列化及反序列化