detomarco
detomarco
@cowtowncoder sure, these are the pojo classes (kotlin) ```kotlin @JsonIdentityInfo( generator = ObjectIdGenerators.PropertyGenerator::class, property = "id", scope = Tree::class, ) data class Tree( val id: Int, var fruits: MutableList =...
yes, still happening with the latest version. I assumed that it depends on this module because I found the specific PR (https://github.com/FasterXML/jackson-databind/pull/2958) that breaks the code
I will open the same issue in the kotlin module then. Thank you
sure, I close this issue for now. Thank you for your support!!
This is the issue I've open in the kotlin module https://github.com/FasterXML/jackson-module-kotlin/issues/681
I reopen since the errors occurs also in plain Java as described here https://github.com/FasterXML/jackson-module-kotlin/issues/681#issuecomment-1583006169 ```java public class Main { @JsonIdentityInfo( generator = ObjectIdGenerators.PropertyGenerator.class, property = "id", scope = Tree.class )...
Thank you so much for your investigations guys!! Sorry but I'm a bit lost :D In my understanding the problem is the combination of several annotations. But in my original...
Hi guys, so what is the outcome so far? Sorry I did not understand
@yihtserns thanks for your advice, the workaround worked. However I would suggest to find a proper solution to this problem because it prevents proper use of data classes in Kotlin...
Is it possible to extend the request in order to add jackson 3 support to kotlin libray as well?