Skip to content

Commit f619819

Browse files
committed
Merge pull request #85 from pgelinas/issue-84
Unit test and fix for issue #84
2 parents 568bc72 + b195559 commit f619819

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

src/main/java/com/fasterxml/jackson/dataformat/xml/ser/XmlBeanSerializer.java

+5
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,11 @@ protected void serializeFields(Object bean, JsonGenerator jgen0, SerializerProvi
160160
if (prop != null) { // can have nulls in filtered list
161161
prop.serializeAsField(bean, xgen, provider);
162162
}
163+
// Reset to avoid next value being written as unwrapped,
164+
// for example when property is suppressed
165+
if (i == textIndex) {
166+
xgen.setNextIsUnwrapped(false);
167+
}
163168
}
164169
if (_anyGetterWriter != null) {
165170
_anyGetterWriter.getAndSerialize(bean, xgen, provider);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package com.fasterxml.jackson.dataformat.xml.unwrapped;
2+
3+
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
4+
import com.fasterxml.jackson.annotation.JsonInclude.Include;
5+
import com.fasterxml.jackson.databind.SerializationFeature;
6+
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
7+
import com.fasterxml.jackson.dataformat.xml.XmlTestBase;
8+
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlText;
9+
10+
public class TestXmlText extends XmlTestBase{
11+
@JsonPropertyOrder({"first","second"})
12+
class Data{
13+
@JacksonXmlText
14+
public String first;
15+
public String second;
16+
public Data(String first, String second) {
17+
this.first = first;
18+
this.second = second;
19+
}
20+
}
21+
22+
private final XmlMapper MAPPER = new XmlMapper();
23+
{ // easier for eye, uncomment for testing
24+
// MAPPER.enable(SerializationFeature.INDENT_OUTPUT);
25+
}
26+
27+
public void testXmlTextWithSuppressedValue() throws Exception {
28+
MAPPER.setSerializationInclusion(Include.NON_EMPTY);
29+
String xml = MAPPER.writeValueAsString(new Data("","second"));
30+
String expectedXml = "<Data><second>second</second></Data>";
31+
assertEquals(expectedXml, xml);
32+
}
33+
}

0 commit comments

Comments
 (0)