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

This commit introduces the `PROCESS_ESCAPED_MALFORMED_TAGS` and `ESCAPE_MALFORMED_TAGS` features that control whether invalid tag names will be escaped with an attribute. fixes #523 fixes #524

(note: inspired by http://stackoverflow.com/questions/21086717/how-to-convert-pojo-to-xml-with-jackson) --- It would make sense to be able to indicate that a specific XML Schema instance would be output as, say: ``` ``` for example by...

Currently `CharacterEscapes` system does not work for XML module, mostly because module has no direct control over output escaping. However, Stax2 extension that Woodstox (and Aalto I think?) implements does...

I was redirected here from the google group, so I'll just repeat what I said there : the localName attribute of `@JacksonXmlRootElement` is not enforced during deserialization. In other words,...

has-failing-test
most-wanted

A `Stream` nested in another object is serialized using a value wrapper just as a collection or array, serializing a `Stream` directly fails when more than one element is available...

2.16

(Refiling after wrong post in [jackson-module-base #57](https://github.com/FasterXML/jackson-modules-base/issues/57)) See this test case: ``` import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import com.fasterxml.jackson.dataformat.xml.JacksonXmlModule; import com.fasterxml.jackson.dataformat.xml.XmlMapper; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlText; import org.junit.Test;...

has-failing-test
most-wanted

Although namespace declarations will be automatically written as needed, sometimes it'd be nice to be able to explicitly specify root element namespace binding for the "default" namespace (one with no...

most-wanted
adding-declarations

This code: ``` java public class Ingredients { public final String eggs="12"; @JacksonXmlProperty(namespace = "urn:produce:fruit") public final String bananas="6"; ... } ``` produces this xml when serialised: ``` xml 1...

most-wanted
adding-declarations

I am trying to deserialise some XML and am getting the following exception. I have these includes: implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.2" implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.13.2") implementation("com.fasterxml.woodstox:woodstox-core:6.2.8") I can serialise/deserialize json fine, the issue is just...

I'm running into an issue with version 2.8.9, which might be related to issue #81 / #82: I'm trying to serialize an object graph with a circular reference using JsonIdentityInfo....