jackson-dataformat-xml icon indicating copy to clipboard operation
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

Results 131 jackson-dataformat-xml issues
Sort by recently updated
recently updated
newest added

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 ,...

test-needed

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...

test-needed
pr-needed

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, the Jackson XML parser will assign incorrect values to the content. ``` @Data public static class Abstract { @JacksonXmlElementWrapper(useWrapping = false) @JacksonXmlProperty(localName...

has-failing-test

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...

to-evaluate

* 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...

2.18

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)

test-needed