gpt4 book ai didi

java - 将 Protobuf 转换为 Java

转载 作者:行者123 更新时间:2023-11-30 01:59:09 25 4
gpt4 key购买 nike

我知道可以将 protobuf 消息转换为 Java 类。我想知道是否可以在不编写翻译函数的情况下将 protobuf 消息转换为 Java 对象?

最佳答案

是的,这是可能的。使用 protobuf 转换器。检查:https://github.com/BAData

将域对象转换为 Protobuf:

ProtoObject protoObject =
Converter.create().toProtobuf(ProtoObject.class, domainObject);

将 Protobuf 对象转换为域对象:

DomainObject domainObject = Converter.create().toDomain(DomainObject.class, protoObject)

您的域类需要使用 @ProtoClass 进行注释,指定您希望域类映射到的原型(prototype)类。示例:

@ProtoClass(ProtoObject.class)
Class DomainClass{
@ProtoField
private String field1;
@ProtoField(name = "xyz") // in case proto and domain class field have different names
private String field2;
}

我一直在用这个,非常好用,省力。

关于java - 将 Protobuf 转换为 Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53464972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com