Jan Rieke

Results 9 comments of Jan Rieke

We also just stumbled upon this issue. Has there been some progress on this? Can we do something to help? If there is a snapshot with a fix, we'll be...

There will be a new annotation `@Jacksonized` (PR rzwitserloot/lombok#2387) in the next lombok release (it's also already in the [current snapshot build](https://projectlombok.org/download-edge), if you want to give it a try)....

Is there any progress on this? I'm the contributor of the `@SuperBuilder` feature for lombok. Users frequently want to use builders in combination with Jackson deserializing, because they want to...

Hmm, now I'm a bit confused. I just checked it again and it also works with the builder implementation class `private`. So unless I figure out why I thought making...

IIRC the problem was not within Jackson, but that I got a compilation error on the annotation when referencing the (private) builder implementation class. So it may be indeed dependent...

I found the problem: Eclipse's compiler does _not_ complain about private access, but `javac` does. `javac` gives `MyDto.MyDtoBuilderImpl has private access in MyDto` on `@JsonDeserialize`. Looks like a bug in...

Here is the relevant part of the [JLS (section 6.6.1.)](https://docs.oracle.com/javase/specs/jls/se9/html/jls-6.html#jls-6.6.1): > Otherwise, the member or constructor is declared private, and access is permitted if and only if it occurs within...

One way out of this could be to extend `@JsonDeserialize` to support specifying a static builder creation method. In this way, no reflective access to the actual builder class is...

Happens occasionally on fresh installations. Unknown cause. Difficult to reproduce. Completely uninstalling ContractManager (including user data) seems to fix the problem.