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
I am upgrading my existing application to sdn6. There's a boolean field in my entities that is not set for some of the nodes.
Reading those nodes fails with NullPointerException when unboxing null to boolean.
I tried to trace that problem and to me it seems that DefaultNeo4jConversionService has extra handling for null-values (valueIsLiteralNullOrNullValue) and that causes that no converters are called.
So the case cannot be caught through a custom converter. Is there another way to handle null-values gracefully?