My .proto file:
package com.xxxxx.cloud.module.proxy.protobuf;
option java_package = "com.xxxxx.cloud.module.proxy.protobuf";
option java_outer_classname = "ProxyHttpProtocol";
message Request{
required string domain = 1;
required string url = 2;
required string body = 3;
required int32 port = 4;
required string method = 5;
}
some errors in java source code:
1、throw e.setUnfinishedMessage(this);//Could not find symbol
2、makeExtensionsImmutable(); //cloud not find symbol
3、ensureFieldAccessorsInitialized //cloud not find symbol
....more
I can't find any documentation to explain the reasons for these errors.