How to parse XML with repeated XML tags into a POJO using Jackson?
I am having issues with parsing this XML into a POJO using Jackson. I have read all the previous descriptions on making classes to de-serialise the XML into POJOS but I keep getting either Null pointers or not END of element warnings. I am extremely confused and any help is much appreciated. The input xml is <row> <entry align="right" valign="top">20</entry> <entry align="right" valign="top">1A</entry> <entry valign="top">SData</entry> <entry align="center" valign="top">2</entry> <entry valign="top">binary</entry> <entry valign="top">Java enterprise</entry> </row> The code I am using is;