How can one ignore Unexpected element situation in JAXB ans still get all other kind of javax.xml.bind.UnmarshalException?
obj = unmler.unmarshal(new StringReader(xml))
Notice i still want to get the obj result of the xml parsing.
|
|
|
The solution. In JAXB implementing ValidationEventHandler like so:
Then
|
||||
|
|
|
I think that should be the other way around, shouldn't it? If the event pertains to an unexpected element, you want to return true so that things continue. |
|||
|
|