To parse my XML with JAXB I have already generated the required POJO's and successfully able to parse the XML. But whenever my xml contains '&' '<>' signs it's failing. As per the rule this needs to be changed to '&' but the 3PP generating the XML does not follow the rule. Now how can I parse this xml with '& <>' signs.
Note - For Marshalling I found many answers but not working for unmarshalling.
Environment - Java 8
XML Example :
<Customer Info> This is & Customer Info <Customer Info>
Any help would be helpful