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 119 jackson-dataformat-xml issues
Sort by recently updated
recently updated
newest added

Currently only some of As.xxx modes work (AS_PROPERTY); rest should also made to work.

The fix for https://github.com/FasterXML/jackson-dataformat-xml/issues/483 introduced a regression for applications using only the built-in JDK XML support. Before this change, the code did this: ``` xmlIn = XMLInputFactory.newInstance(); ``` After this...

Hi, **Describe the bug** I am using jackson-databind in my AWS Lambda developed in Java 8. Along with related jackson libraries ... a screen shot of my pom.xml is attached....

test-needed

As in https://github.com/FasterXML/jackson-dataformat-xml/issues/491, I've found an additional issue where parsing empty tags without default constructor fails. This worked in 2.11.3, but has failed since. Check should_parse_empty_tag_without_default_constructor() in https://github.com/henrik242/jackson-xml-problem/blob/no-string-argument/src/test/java/jackson/xml/NoStringArgumentTest.java#L37 Test (java):...

XmlMapper, when using `writerWithDefaultPrettyPrinter `and writing value to a new fle is adding an empty line at the end of the file. This is not happening when using `writeValueAsString`

QName is a special case of an XML Deserializer. This PR parses the contents of the QName and assigns the correct namespace from the XML stack. This mimics the behavior...

Replicated with Jackson 2.13.3 Might be related to #508 Unlike XmlMapper is not able to find no-argument record constructor for deserialization of emptzy document even if one is explicitly defined...

Running Quarkus native-image plugin on MANDREL 23.1.2.0 JDK 21.0.2+13-LTS ``` Error: Unsupported features in 2 methods Detailed message: Error: Discovered unresolved method during parsing: com.fasterxml.jackson.databind.PropertyName.merge(com.fasterxml.jackson.databind.PropertyName, com.fasterxml.jackson.databind.PropertyName). This error is reported...

Hi @cowtowncoder, We are planning to migrate our old deserialization logic from using fragmented substrings between `` and `` tags when deserializing an XML String to POJOs into Jackson’s sophisticated...

Hello @cowtowncoder , I think it would be nice to serialize empty tag into actual array/objects (in some cases), not text value, in particular, as you can see from the...