在Java中将json转换为动态生成的原型buf
2022-09-04 22:52:30
给定以下 json 响应:
{
"id" : "123456",
"name" : "John Doe",
"email" : "john.doe@example.com"
}
以及以下 user.proto 文件:
message User {
string id = 1;
string name = 2;
string email = 3;
}
我希望能够动态创建protobuf消息类(在运行时编译.proto),这样如果json响应通过字段得到增强,我可以上传protobuf文件的新版本以包含并在protobuf响应中公开该字段,而无需重新启动服务。"phone" : "+1234567890"
string phone = 4
如果我要从帽子上拉出这些类,我希望能够按照下面的代码编写一些东西。
import com.googlecode.protobuf.format.JsonFormat;
import com.googlecode.protobuf.Message;
import org.apache.commons.io.FileUtils;
...
public Message convertToProto(InputStream jsonInputStream){
// get the latest user.proto file
String userProtoFile = FileUtils.readFileToString("user.proto");
Message userProtoMessage = com.acme.ProtobufUtils.compile(userProtoFile);
Message.Builder builder = userProtoMessage.newBuilderForType();
new JsonFormat().merge(jsonInputStream, Charset.forName("UTF-8"), builder);
return builder.build();
}
是否有现有的 com.acme.ProtobufUtils.compile(...) 方法?或者如何实现一个?运行protoc + load类似乎有些过分,但是如果没有其他选择,我愿意使用它......