Markus Ritter

Results 20 comments of Markus Ritter

Hi Thanks for your effort. At least the fix I made works for our usecases 😁 Please let me know if I can support you. Best regards

Ok, the problem now is that the referenced DTO class has Jackson annotations: ```java public class Event { private final String id; private final String name; private final byte[] payload;...

Thanks for the fast support :) I created a test project here: https://github.com/doppelrittberger/dsljson-test But I cannot get it to compile. What am I missing?

Hi there, one addition: if I delete the JsonInit class which references the Event class which is annotated with @JsonCreator it works. So I think there is a small bug...

Hi there, When will this be merged and available? We need this since the current way of handling json rows is insufficient for most use cases. In most cases the...

Yes. Currently you have a fixed handling of data types in DataTypeCodec class (eg. line 588: a JSONB column is always calling DataTypeCode.textDecodeJSONB and so wraps the String into a...

Hi yeah I know about this possibilities but still this approach is too inflexible for our use case: 1. we use quarkus and configure Jackson using quarkus functions -> we...

I can create a merge request with a suggestion if you like. I would change the JsonObject to lazily parse the string/buffer and add methods to access/store the original JSON...

Ok, which way would you suggest? What about this MR? Any updates needed to be merged? I think implementing DataTypeCodec more flexible is a possible solution. Simple approach would be...

We have a system with events. These events are stored as JSONB in Postgres. We have a layer which creates these events and converts them into byte[] or String before...