溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Protobuf詳解

發(fā)布時(shí)間:2020-07-22 02:10:26 來(lái)源:網(wǎng)絡(luò) 閱讀:234581 作者:小新專欄 欄目:開(kāi)發(fā)技術(shù)

Protobuf詳解

按:

新公司前端后端,使用的數(shù)據(jù)化方式是protobuf (Protocol Buffer)。

 

一,什么是Protobuf

官方文檔給出的是:

a language-neutral, platform-neutral, extensible way of serializing structured data for use in communications protocols, data storage, and more.

 

二,Protobuf的優(yōu)點(diǎn)

1,性能好,效率高


2,代碼生成機(jī)制,數(shù)據(jù)解析類自動(dòng)生成


3,支持向后兼容和向前兼容


4,支持多種編程語(yǔ)言(java,c++,python)


5,參考文檔:http://blog.csdn.net/caisini_vc/article/details/5599468

 

三,Protobuf的缺點(diǎn)

1, 應(yīng)用不夠廣


2, 二進(jìn)制格式導(dǎo)致可讀性差(二進(jìn)制格式)


3, 缺乏自描述

官方文檔描述如下:for instance, protocol buffers would not be a good way to model a text-based document with markup (e.g. HTML), since you cannot easily interleave structure with text


4, 參考文檔:http://blog.csdn.net/caisini_vc/article/details/5599468

 

四,Protobuf環(huán)境的搭建

步驟:

1, 安裝maven

http://blog.csdn.net/jiangguilong2000/article/details/9284437


2, 下載probuf源碼和編譯器

http://blog.csdn.net/jiangguilong2000/article/details/9284297


3, 拷貝文件,執(zhí)行相應(yīng)mvn install命令。 (protobuf并不提供jar包,需要自己執(zhí)行命令生成)

Note:

在這個(gè)地方遇到了一個(gè)問(wèn)題,錯(cuò)誤信息如下:

Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.3:run (generate-sources) on project protobuf-java: An Ant BuildException has occured: Execute failed: java.io.IOException: Cannot run program "..\src\protoc": CreateProcess error=2, ????????? ->

原因:犯了了一個(gè)很2的問(wèn)題,拷貝protoc.exe文件的路徑拷錯(cuò)了。請(qǐng)?jiān)敿?xì)比較步驟2中的路徑,一定拷對(duì)路徑。


4,通過(guò)protoc.exe編譯addressbook.proto文件

http://blog.sina.com.cn/s/blog_653ac36d0101h9kn.html

 

五,核心概念

1,.proto文件

相當(dāng)于確定數(shù)據(jù)協(xié)議,數(shù)據(jù)結(jié)構(gòu)中存在哪些數(shù)據(jù),數(shù)據(jù)類型是怎么樣


2,modifiers

2-1 required 不可以增加或刪除的字段,必須初始化

2-2 optional 可選字段,可刪除,可以不初始化

2-3 repeated 可重復(fù)字段, 對(duì)應(yīng)到j(luò)ava文件里,生成的是List


3,Message

在proto文件里,數(shù)據(jù)的協(xié)議時(shí)以Message的形式表現(xiàn)的。


4, Build

生成具體的java類時(shí),例如Person.java,同時(shí)會(huì)存在build方法。文檔的意思是對(duì)于轉(zhuǎn)化后的數(shù)據(jù),具有唯一性,build提供了便利的方法來(lái)初始化這些數(shù)據(jù)。

 

六,其他

暫無(wú)

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI