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 if a mapped field in a bean is null, CSVeed will throw a NullPointerException when writing the row for that bean, because of the way RowWriterImpl.java line 107 works.
It would be nice if CSVeed could interpret null field values as empty, or offer an option to @CsvCell to enable that behavior.
A plausible workaround is to provide custom mappers for every field, but this is somewhat messy.
The text was updated successfully, but these errors were encountered:
Currently if a mapped field in a bean is null, CSVeed will throw a NullPointerException when writing the row for that bean, because of the way RowWriterImpl.java line 107 works.
It would be nice if CSVeed could interpret null field values as empty, or offer an option to @CsvCell to enable that behavior.
A plausible workaround is to provide custom mappers for every field, but this is somewhat messy.
The text was updated successfully, but these errors were encountered: