protobuf 本身提供了序列化为json得工具类:com.google.protobuf.util.JsonFormat
序列化不使用驼峰命名:
JsonFormat.printer().preservingProtoFieldNames().print(Message实例)
JsonFormat 默认是使用驼峰命名的,它的内部类Printer得属性preservingProtoFieldNames控制着是否使用驼峰命名,默认为false,表示是用驼峰命名,置为true则不再使用驼峰命名。