Description
Hello, I have a large number of servers which all utilize native Java serialization for communication over an in house networking layer.
I'm evaluating replacing our in house networking layer/RPC code with that generated by gRPC. I'm attempting to avoid making .proto files for all of these objects since many of them are complex with deep and nested composition. Moreover the sheer scale of the objects involved make the project difficult from a testing standpoint. In a later/future state I expect us to use .protos/gRPC for the rare non-java based process communication.
What is the suggested way of attempting this migration? Is basing it off the JSON setup described here (#5048) still the preferred mechanism? If anyone has related sample code it will be greatly appreciated.
Thank you