- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在研究从数据库中获取数据并构造 protobuff 消息的东西。鉴于可以从数据库中为某些字段获取空值的可能性,我将在尝试构造 protobuff 消息时得到空指针异常。从线程 http://code.google.com/p/protobuf/issues/detail?id=57 了解 protobuffs 不支持 null ,我想知道处理抛出 NPE 的唯一其他方法是否是将手动检查插入到与 proto 对应的 java 文件中,如下所示!
message ProtoPerson{
optional string firstName = 1;
optional string lastName = 2;
optional string address1 = 3;
}
ProtoPerson.Builder builder = ProtoPerson.Builder.newBuilder();
if (p.getFirstName() != null) builder.setFirstName(p.getFirstName());
if (p.getLastName() != null) builder.setLastName(p.getLastName());
if (p.getAddress1() != null) builder.setAddress1(p.getAddress1());
...
那么有人可以澄清一下在 protobuff 构建期间是否有任何其他可能的有效方法来处理空值?
最佳答案
免责声明:Google 员工每天都会使用 protobufs 回答。我绝不代表 Google。
Person
而不是 PersonProto
或 ProtoPerson
。编译的 protobuf 只是您使用的语言指定的类定义,并进行了一些改进。添加“Proto”是多余的。YourMessage.hasYourField()
而不是 YourMessage.getYourField() != null
。 protobuf 字符串的默认值是一个空字符串,它 NOT 等于 null。然而,无论您的字段是未设置、清除还是空字符串,.hasYourField()
始终返回 false。见 default values for common protobuf field types .null
。 即使在 protobuf 之外,null
causes all sorts of problems .请改用 .clearYourField()
。Person.Builder
类 NOT 有 .newBuilder()
方法。 Person
类可以。像这样理解 Builder 模式:只有当你还没有新的 builder 时,你才能创建它。重写你的 protobuf:
message Person {
optional string first_name = 1;
optional string last_name = 2;
optional string address_1 = 3;
}
重写你的逻辑:
Person thatPerson = Person.newBuilder()
.setFirstName("Aaa")
.setLastName("Bbb")
.setAddress1("Ccc")
.build();
Person.Builder thisPersonBuilder = Person.newBuilder()
if (thatPerson.hasFirstName()) {
thisPersonBuilder.setFirstName(thatPerson.getFirstName());
}
if (thatPerson.hasLastName()) {
thisPersonBuilder.setLastName(thatPerson.getLastName());
}
if (thatPerson.hasAddress1()) {
thisPersonBuilder.setAddress1(thatPerson.getAddress1());
}
Person thisPerson = thisPersonBuilder.build();
如果 thatPerson
是您创建的人员对象,其属性值可以是空字符串、空格或 null,那么我建议使用 Guava's Strings
library :
import static com.google.common.base.Strings.nullToEmpty;
Person.Builder thisPersonBuilder = Person.newBuilder()
if (!nullToEmpty(thatPerson.getFirstName()).trim().isEmpty()) {
thisPersonBuilder.setFirstName(thatPerson.getFirstName());
}
if (!nullToEmpty(thatPerson.hasLastName()).trim().isEmpty()) {
thisPersonBuilder.setLastName(thatPerson.getLastName());
}
if (!nullToEmpty(thatPerson.hasAddress1()).trim().isEmpty()) {
thisPersonBuilder.setAddress1(thatPerson.getAddress1());
}
Person thisPerson = thisPersonBuilder.build();
关于java - 处理 protobuffers 中的空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21227924/
我正在使用 protobuf-csharp-port 库以文本形式写入和读取消息。 我可以使用以下代码以文本形式编写消息,但我找不到任何示例来说明如何将此消息读回到原型(prototype) buff
在尝试使用以下命令编译名为 UserOptions.proto 的 proto 文件时,该文件具有名为 Account.proto 的导入 protoc --proto_path=/home/proj
考虑以下消息。 message example { repeated string text; } 假设在 C++ 中,我将一个字符串列表插入到示例的文本字段中: exemple aMessag
我正在研究从数据库中获取数据并构造 protobuff 消息的东西。鉴于可以从数据库中为某些字段获取空值的可能性,我将在尝试构造 protobuff 消息时得到空指针异常。从线程 http://cod
我遇到了错误 The type cannot be changed once a serializer has been generated 尝试使用 Protobuff.net 进行序列化时。我已设
我有一个 protoBuff3 规范,看起来像 message MSG { string name = 1; repeated string data = 2; } 还有一个设置“MSG.
自从我注意到 MapStruct 已更新以与 Protobuff 及其构建器交互,我考虑迁移我们的服务以完全使用 MapStruct。 然而,我们仍在编写到 protobuff 消息的手动转换,因为考
为什么 ProtoBuff.Net 不支持null? 我正在浏览 ProtoBuf,想知道为什么不支持 null 值。当我们尝试分配 null 值时,它给出了异常。即使像字符串这样的 ref 也不支持
我正在使用 Squareup Wire protobuf 生成 protobuf 类图书馆 这是我的原型(prototype)文件 syntax = "proto2"; package squareu
我正在实现一个自定义协议(protocol),两个应用程序将使用该协议(protocol)相互发送各种命令(包括文件传输,即大型二进制数据 block )。经过深思熟虑,我认为 protobuff 是
我创建了一个原型(prototype)插件。当我执行时: $ protoc --plugin=protoc-gen-grpc-java=grpc-client-guice-gradle-plugin
是否可以将 grpc 中 proto3 的默认模型从 CamelCase 更改为 snake_case? 例子: 文件 anyproto.proto ... message Request { b
总结:使用新的 tf.contrib.data.Dataset 使我的图形 protobuff 文件的大小加倍,我无法在 Tensorboard 中可视化图形。 详情: 我正在试用新的 TensorF
在阅读 Netty 教程时,我发现了一个简单的 description如何集成 Netty 和 Google Protocol Buffers .我已经开始研究它的示例(因为文档中没有更多信息)并编写
正在开发一个使用 ProtoBuff 获取其内容的项目。通过在 HTML 中加载 JavaScript 使其工作一次。现在重构为使用 requirejs 来加载脚本。但是当我尝试使用脚本时,它给出一个
我有一个简单的原型(prototype)文件,用于创建我的 java 类 syntax = "proto3"; option java_package = "some.project.grpc"; o
我正在调用一个 api 来获取输入流,然后调用静态方法 parseFrom(inputstream) 将其转换为 protobuffclass。 如果我用一个特定的类来做它会起作用: public C
我们有一个使用 google 实现的 java 后端表面原型(prototype)对象。我们现在想在客户端使用 .net 中的这些对象并对其进行操作。问题是我们不想在客户端依赖谷歌的不可变原型(pro
我是 c++ 和 visual studio 2012 的新手,所以问题可能出在屏幕和椅子之间。我执行了以下步骤; 我制作了一个带有选项 optimize_for = LITE_RUNTIME 的简单
使用 Protocol Buffer 对象(序列化为字节数组)在 Android Activity 之间作为 intent extras 传递而不是在经典 POJO 上实现 Parcelable 是个
我是一名优秀的程序员,十分优秀!