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

转换后当前是: ![image](https://user-images.githubusercontent.com/6889060/116026722-d5a2a780-a685-11eb-9232-eaf7fb7fef39.png) 应该是: ![image](https://user-images.githubusercontent.com/6889060/116026831-04b91900-a686-11eb-8c70-d350bd13e94e.png)

test-needed

Hello there! I am using `jackson` on a project and greatly enjoy it, so first off thanks. However, I'm running in to an odd issue with Pretty Printing XML: ```xml...

Using the latest `2.12.2` version. Getting `com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No fallback setter/field defined for creator property 'ListItem' (through reference chain: cz.smarteon.loxone.system.status.Child["ListItem"])` when parent's `@JsonTypeInfo(visible = true)`. So it seems it's not possible...

I am currently trying to have a simple class like ```java class Test { public String name; @JsonRawValue public String child; } Test test = new Test(); test.name = "Hello...

I'm having problems on list serialization, i'm having too much wrapper. how to avoid the wrapper around abstract object ? here is my case : http://stackoverflow.com/questions/37663404/jackson-xml-problems-on-serializing The generated json format...

jaxb-type-id
most-wanted

I am implementing a Java class for calling an external API with uses XML as data format. The API provider provides for each Endpoint the corresponding XML schema. I used...

https://github.com/FasterXML/jackson-dataformat-xml/blob/6bd59fb77aa27bfba8d51eb36a346d218f201142/src/main/java/com/fasterxml/jackson/dataformat/xml/ser/XmlSerializerProvider.java#L146 In following function ```java protected void _startRootArray(ToXmlGenerator xgen, QName rootName) throws IOException { xgen.writeStartObject(); // Could repeat root name, but what's the point? How to customize? xgen.writeFieldName("item"); } ```...

Hello, I am using jackson-dataformat-xml-2.9.8 and I use the as-property-typing to handle polymorphic types in collections. Whereas it works in normal cases, there is a problem when the collection contains...

jackson-dataformat-xml version: 2.9.8 When using an `XMLMapper` with `Jdk8Module` to serialize `Stream`s, the serializer seems to ignore annotation `@JacksonXmlElementWrapper` placed on a `Stream`. For example, if I try to serialize...

2.16

I have 3 data classes with jaxb annotations: ``` @XmlRootElement(name = "root") @XmlAccessorType(XmlAccessType.FIELD) public class Root { public Parent parent; } public class Parent { @XmlElementWrapper(name = "children") @XmlElement(name =...