jhunters / jprotobuf

A useful utility library for java programmer using google protobuf
Apache License 2.0
879 stars 281 forks source link

ProtobufIDLProxy Java代码生成支持Any类型 #157

Closed jhunters closed 3 years ago

jhunters commented 3 years ago

proto代码 syntax = "proto3"; import "google/protobuf/any.proto";

option java_package = "com.baidu.bjf.remoting.protobuf.v3.any"; option java_outer_classname = "AnySamplePOJO";

message AnyObject { string message = 1; repeated google.protobuf.Any details = 2; }

生成的java代码 public class AnyObject { /**