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
{{ message }}
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.
Looks like 2.3.0-SNAPSHOT version of super-sonic bean deserializer does not actually override main deserialization method that gets called, in so-called "vanilla" case. This is combination of multiple factors; one of them being actual bug fix in 2.3.0 databind, which makes vanilla mode correctly detected. In that case, call sequence does not include methods that SSBD overrides.
Changes are needed in jackson-databind, because at least one method declared final in BeanDeserializer can not be so; probably the first-level deserialize() method (since it can't usually be inlined anyway)
The text was updated successfully, but these errors were encountered:
Looks like 2.3.0-SNAPSHOT version of super-sonic bean deserializer does not actually override main deserialization method that gets called, in so-called "vanilla" case. This is combination of multiple factors; one of them being actual bug fix in 2.3.0 databind, which makes vanilla mode correctly detected. In that case, call sequence does not include methods that SSBD overrides.
Changes are needed in jackson-databind, because at least one method declared
final
inBeanDeserializer
can not be so; probably the first-leveldeserialize()
method (since it can't usually be inlined anyway)The text was updated successfully, but these errors were encountered: