protobuf
诸葛子房_
先后就职于京东和BAT,在大数据领域有多年工作经验;
Apache Griffin&&Apache Zeppelin Contributor,dataCompare和dataService作者
展开
-
protobuf 设计,避免频繁打包更新
1.原始syntax="proto3";option java_package = "com.vince.xq";option java_multiple_files=true;option java_outer_classname="Profile";message UserProfile { int32 id = 1; int32 age = 2; int32 sex = 3; optional Profile profile_1=4;}message Pro...原创 2022-05-31 16:49:59 · 263 阅读 · 0 评论 -
idea protobuf maven
Maven插件整合Protobuf – 雪后西塘 (w3sun.com)protobuf + maven 爬坑记 - 疯狂创客圈 - 博客园 (cnblogs.com)代码地址:zhugezifang/protobuf-idea (github.com)原创 2021-11-10 11:35:23 · 267 阅读 · 0 评论 -
protobuf与json相互转换的方法
protobuf与json相互转换的方法 - PC君 - 博客园 (cnblogs.com)原创 2021-11-05 12:51:17 · 1031 阅读 · 0 评论 -
protobuf 使用和介绍
介绍Protobuf 有没有比 JSON 快 5 倍?-InfoQ(3条消息) protobuf、thrift、avro对比_wangqiang9x的博客-CSDN博客使用Intellij IDEA中使用Protobuf的正确姿势 - 静若清池 - 博客园 (cnblogs.com)syntax="proto3";option java_package = "com.vince.xq";option java_multiple_files=true;option jav原创 2021-07-27 17:58:19 · 644 阅读 · 0 评论 -
protobuf 序列化和反序列化
1.代码 Student.Builder builder = Student.newBuilder(); builder.setId(1); builder.setName("段小秋"); builder.setEmail("31346337@qq.com"); //序列化 Student stu = builder.build(); System.out.println(stu);原创 2021-11-03 17:39:23 · 206 阅读 · 0 评论