sdk-java
sdk-java copied to clipboard
How to transport List<CloudEvent> between Springboot services by openfeign?
As the topic. It seems that there is no example showing how to serialize List<CloudEvent> .
Springboot's default serialization mechanism is jackson, which serializes List ,The resulted json string cannot be deserialized again to List object.
And putting all the info in the HTTP headers is not suitable for me。 Is there any way to put the event info in the HttpBody,and can seriliaze in JSON formart, transport by OpenFeign?
thanks!