Re: [jackson-user] Expression Tree

2023-05-04 Thread 김주혁
I am doing quite similar stuff at my current day job  Hope My suggestions can help. 1# “NO” to using a custom de/serializer. I started using @JsonTypeInfo at work to avoid exactly that. Having to write custom de/serializers for every DTO class. 2# Use Id.Name instead. I suggest to

Re: [jackson-user] Expression Tree

2023-05-03 Thread Tatu Saloranta
On Mon, May 1, 2023 at 4:11 PM Marcus Biel wrote: > > Hello everyone, > > I'm dealing with a project that has a complex setup, and I'm trying to > simplify it. Our application allows users to establish Conditions or Filters > in the UI. These Conditions/Filters are stored in a database and can

[jackson-user] Expression Tree

2023-05-01 Thread Marcus Biel
Hello everyone, I'm dealing with a project that has a complex setup, and I'm trying to simplify it. Our application allows users to establish Conditions or Filters in the UI. These Conditions/Filters are stored in a database and can be used to limit database queries using WHERE conditions.