You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "" (class com.fasterxml.jackson.dataformat.xml.failing.EmptyListTest$Entry), not marked as ignorable (one known property: "id"])
at [Source: java.io.StringReader@5a7baa77; line: 2, column: 28] (through reference chain: com.fasterxml.jackson.dataformat.xml.failing.Config["entry"]->java.util.ArrayList[0]->com.fasterxml.jackson.dataformat.xml.failing.Entry[""])
at com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException.from(UnrecognizedPropertyException.java:62)
Note that problem does NOT occur if any of following is true:
element (<entry>) does NOT have attribute(s)
element has a child element
element has no textual content (so, either <entry /> or <entry></entry>)
but only with one or more attributes, and all-whitespace "content".
The text was updated successfully, but these errors were encountered:
Basically, for content defined like:
content like:
will result in exception like:
Note that problem does NOT occur if any of following is true:
<entry>
) does NOT have attribute(s)<entry />
or<entry></entry>
)but only with one or more attributes, and all-whitespace "content".
The text was updated successfully, but these errors were encountered: