Replies: 1 comment 14 replies
-
Sounds like a discussion, not issue, converting. |
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Maybe I'm overlooking this option somehow, if so please be so kind and point to related documentation/code.
Scenario: In deserializing to some java dto, csv file with first line being header(potentially invalid not relating to dto), following lines are records, potentially invalid, either for deserialization to dto or bean validation. I'd like to process the whole file and report all lines which contains error.
Currently I'm solving it by reading first line (header) which I store in variable and while reading remaining lines I'm creating 2LOC csv documents, which I parse separately. It's nasty, but I don't see another option. Please advise
Beta Was this translation helpful? Give feedback.
All reactions