jackson-dataformat-xml
jackson-dataformat-xml copied to clipboard
Extension for Jackson JSON processor that adds support for serializing POJOs as XML (and deserializing from XML) as an alternative to JSON
Let say there is a class Bean.java ``` public class Bean{ boolean isAlive(); } ``` and there is a xmlString which has the above isAlive field with the value ,...
This is a reproduction of #198. It was mentioned opening a new issue is preferred. The issue is, that `@JacksonXmlText` seems to work as intended for serialization, but not for...
Hi! I've faced an issue working with XML documents (deserialization, modifying, serialization): from JsonNode I can't serialize XML with attributes. Attributes become regular JsonNode fields after deserialization and then serialized...
If there are HTML tags within XML tags, @JacksonXmlText will assign incorrect values to the content.
If there are HTML tags within XML tags, the Jackson XML parser will assign incorrect values to the content. ``` @Data public static class Abstract { @JacksonXmlElementWrapper(useWrapping = false) @JacksonXmlProperty(localName...
I noticed that when i serialize an object with a null list and disable using a default wrapper around lists, upon deserialization the object returned differs from the object serialized....
I apologize in advance if there is already a bug opened for this condition (or if I am approaching this the wrong way) - my search-fu failed to turn up...
* relates to #315 * so far, only supporting this for binary formats (OutputStream, File, byte[]) * will later see if something similar is useful for other formats
https://github.com/FasterXML/jackson-core/blob/2.16/src/main/java/com/fasterxml/jackson/core/StreamReadConstraints.java In particular, the 2 new ones (in 2.16) * maxDocumentLength * maxNameLength With maxNestingDepth, Woodstox has its own way to enforce that and users who need to enforce that...
XmlMapper just skips elements inside element with `resource-id="com.ivanovsky.passnotes:id/recyclerView"`. File is attached. There is also no warnings, errors or any kind messages after `XmlMapper().readValue()` call. version 2.15.2 [groups-screen-invalid-dump.xml.txt](https://github.com/FasterXML/jackson-dataformat-xml/files/12640943/groups-screen-invalid-dump.xml.txt)