2

我有一个简单的 .proto 文件,我从中生成 java 类。proto 文件如下所示。

message Address {
    string city = 1;
    string country = 2;
}

message PersonalInfo {
    string name = 1;
    repeated Address adresses = 2;
}

错误是:

 error: incompatible types: com.google.protobuf.GeneratedMessageV3.BuilderParent cannot be converted to com.google.protobuf.AbstractMessage.BuilderParent
            getParentForChildren(),
                                ^

我正在使用3.1.0生成类并构建 java 源代码。我是否有错误配置,proto 文件不正确还是 proto 中的错误?

4

0 回答 0