You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently kotlin-module creates a new instance by default when deserializing object.
This problem can be solved by enabling KotlinFeature.SingletonSupport.
On the other hand, to avoid compromising the integrity of Kotlin, this option should be enabled by default.
Barring any strong objections, I intend to make the above change in Jackson 3.0 (although it should be confirmed that there are no performance issues beforehand).
I would also like to remove the SingletonSupport option as well, as there seems to be no advantage to choosing this behavior.
The text was updated successfully, but these errors were encountered:
Currently
kotlin-module
creates a new instance by default when deserializingobject
.This problem can be solved by enabling
KotlinFeature.SingletonSupport
.On the other hand, to avoid compromising the integrity of
Kotlin
, this option should be enabled by default.Barring any strong objections, I intend to make the above change in
Jackson 3.0
(although it should be confirmed that there are no performance issues beforehand).I would also like to remove the
SingletonSupport
option as well, as there seems to be no advantage to choosing this behavior.The text was updated successfully, but these errors were encountered: