找不到协议导入或有错误

时间:2019-05-24 10:15:31

标签: protocol-buffers protobuf-c protobuf-java

我有两个简单的.proto文件。一个对另一个重要。启动命令时; 协议--java_out ='退出路径'-I'路径根''具有导入的路径.proto'。它引发了以下错误:找不到导入“ path proto2.proto”或有错误。在导入中,我有绝对路径 我的两个文件。 proto1.proto:

syntax = "proto3";
import "/home/myuser/insProtoc/proto2.proto";

message SearchResponse {
  repeated Result results = 1;
}

proto2.proto:

syntax = "proto3";

message Result {
  string url = 1;
  string title = 2;
  repeated string snippets = 3;
}

返回此错误;

  

/home//mysuser/insProtoc/proto2.proto:找不到文件。   /--proto_path/ejemplo1.proto:导入   找不到“ /home/muyuser/insProtoc/proto2.proto”或有错误。   /--proto_path/proto1.proto:6:12:“结果”未定义。

0 个答案:

没有答案