nryanov commented on issue #6822:
URL: https://github.com/apache/paimon/issues/6822#issuecomment-4477530269
Hi!
Encountered the same issue. Current solution in my case was to create a
bridge between objectMapper from web-framework and shaded objectMapper in
paimon. After that register all DTOs manually like that:
```
var module = new SimpleModule("paimon-rest");
PaimonRestJacksonBridge.register(module, *Request.class);
PaimonRestJacksonBridge.register(module, *Response.class);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]