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'm trying to serialize from kotlin data class to csv file and then back to data class.
All nulls are serialized as empty strings in the csv file.
Then for the deserialization I use csvMapper.enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT) however it still maps values as empty strings, not as nulls.
Not sure if this is related to kotlin-module or to dataformat-csv.
The text was updated successfully, but these errors were encountered:
I'm trying to serialize from kotlin data class to csv file and then back to data class.
All nulls are serialized as empty strings in the csv file.
Then for the deserialization I use
csvMapper.enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT)
however it still maps values as empty strings, not as nulls.Not sure if this is related to kotlin-module or to dataformat-csv.
The text was updated successfully, but these errors were encountered: