Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small update of the known limitations section of the README #436

Merged
merged 1 commit into from
Nov 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ Currently, following limitations exist beyond general Jackson (JSON) limitations
* Streaming model is only meant to be used through databinding: direct usage is possible but not supported
* Tree Model (`JsonNode`, `ObjectMapper.readTree()`) is based on JSON content model and it does not match exactly with XML infoset
* Mixed content (both textual content and elements as children of an element) not supported: text, if any, will be lost
* Prior to `2.12` (not yet released as of May 2020), handling of repeated XML elements was problematic (it could only retain the last element read), but [#403](/~https://github.com/FasterXML/jackson-dataformat-xml/issues/403) improves andling
* Prior to `2.12`, handling of repeated XML elements was problematic (it could only retain the last element read), but [#403](/~https://github.com/FasterXML/jackson-dataformat-xml/issues/403) improves handling
* Root value should be a POJO (that is, a Java value expressed as a set of properties (key/value pairs)); and specifically following types can be serialized as properties but may not work as intended as root values
* Primitive/Wrapper values (like `java.lang.Integer`)
* `String`s (and types that serialize as Strings such as Timestamps, Date/Time values)
Expand Down