On Mon, Nov 1, 2021 at 11:35 AM Marek Andreánsky <[email protected]> wrote: > > Is there a recommended way of deserializing a csv file where one object can > be spread among multiple lines? > > An example is: > > id,text,element > 1,test,element1 > 1,test,element2 > > and the expected object is (1,test,[element1,element2]) where id is the > primary key.
No, I don't think there is support for such aggregation operations. You would need to implement that on top of regular reading. -+ Tatu +- > > -- > You received this message because you are subscribed to the Google Groups > "jackson-user" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jackson-user/ba9bf1a5-2e6d-44d0-bd46-91200ef70d0fn%40googlegroups.com. -- You received this message because you are subscribed to the Google Groups "jackson-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jackson-user/CAL4a10h%3DB_e7i-7De%2B%3Dh0-803e_36LGHND_6206%2B6J3t3VChnA%40mail.gmail.com.
