- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XML wrapper doesn't work with java records #517
Comments
The same seem to go for |
Try v2.15.0-rc3. This version has better Record support. |
@pjfanning did not help for |
@magott Kotlin Data classes are different from Records (wrt implementations); Kotlin module applies tons of magic unfortunately (some of it necessary). So if there's issue with that it may need to be opened. One practical challenge here is tho that XML module tests cannot depend on Kotlin nor vice versa. Refers to issue #153 is probably wrong; maybe that's for Kotlin repo issue? |
@cowtowncoder yes, my bad. It was FasterXML/jackson-module-kotlin#153 If the fix for java and kotlin is different from each other. That will need to be reopened? |
@magott Added notE on Kotlin module issue. As per my note there, reproduction needs to be added to |
Excuse me, but WTF?! 😡 😡 😡 code: import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;
import com.fasterxml.jackson.dataformat.xml.ser.ToXmlGenerator;
import java.util.List;
public class Main {
@JsonRootName("root")
record VerySimple (
@JsonProperty("text") String text,
@JsonProperty("msg") @JacksonXmlElementWrapper(localName = "msgList") List<String> msg
) { }
public static void main(String[] args) throws JsonProcessingException {
var mapper = new XmlMapper();
mapper.enable(SerializationFeature.INDENT_OUTPUT);
mapper.enable(ToXmlGenerator.Feature.WRITE_XML_DECLARATION);
System.out.println(mapper.writeValueAsString(new VerySimple("text", List.of("hello","world"))));
var xml = """
<?xml version='1.0' encoding='UTF-8'?>
<root>
<text>text</text>
<msgList>
<msg>hello</msg>
<msg>world</msg>
</msgList>
</root>""";
var obj = mapper.readValue(xml, VerySimple.class);
System.out.println(obj);
}
} output:
|
@MikePryadko Uh? WTF what? |
@cowtowncoder seriously? Well, let's state the obvious: serialization works fine, deserialization fails. 😑 Do you think it's Ok? |
With plain class result is same import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;
import com.fasterxml.jackson.dataformat.xml.ser.ToXmlGenerator;
import java.util.List;
public class Main {
@JsonRootName("root")
static class Test {
@JsonProperty("text")
public final String text;
@JsonProperty("msg")
@JacksonXmlElementWrapper(localName = "msgList")
public final List<String> msg;
public Test(@JsonProperty("text") String text, @JsonProperty("msg") @JacksonXmlElementWrapper(localName = "msgList") List<String> msg) {
this.text = text;
this.msg = msg;
}
}
public static void main(String[] args) throws JsonProcessingException {
var mapper = new XmlMapper();
mapper.enable(SerializationFeature.INDENT_OUTPUT);
mapper.enable(ToXmlGenerator.Feature.WRITE_XML_DECLARATION);
System.out.println(mapper.writeValueAsString(new Test("text", List.of("hello","world"))));
var xml = """
<?xml version='1.0' encoding='UTF-8'?>
<root>
<text>text</text>
<msgList>
<msg>hello</msg>
<msg>world</msg>
</msgList>
</root>""";
var obj = mapper.readValue(xml, Test.class);
System.out.println(obj);
}
}
|
I found: deserialization crushes when field name in Works fine: record VerySimple (
@JsonProperty("text") String text,
@JsonProperty("msg") @JacksonXmlElementWrapper(localName = "msg") List<String> msg
) { } Fails: record VerySimple (
@JsonProperty("text") String text,
@JsonProperty("msg") @JacksonXmlElementWrapper(localName = "msgList") List<String> msg
) { } Can anyone fix this please..? |
I don't think I have indicated that is good: of course we'd rather things worked. So it sounds like WTF here was meant as `+1 to fix this' or something. I was just surprised by indications of anger over a bug report, comments regarding related (but different) bug reports for Kotlin module. |
@cowtowncoder sorry for aggression - it was my sincere reaction: it's 2023 outside, and annotation Or this situation is a bug and previous versions worked fine? |
@MikePryadko But there seem to be issues specific to use with Java Records and Kotlin Data classes. They have their own peculiarities wrt handling. I don't think handling has worked better before. You can consider issues an incomplete support for specific combination of things. And all help in actually solving the problem is welcome. But less so for commentary on "why isn't it STILL FIXED IN 2023". It could be 2048 and if no one has figured out how to make things work it wouldn't work. OSS projects do not really work well with Shaming as incentive. |
I just encountered the same issue when using a custom constructor for a simple POJO (https://stackoverflow.com/questions/79055046/deserialize-list-of-objects-from-xml-to-java-pojos-using-jackson/79061736#79061736) I didn't want a default constructor to be present, so noone can create shallow objects of my POJO classes. But setting the default constructor to protected is a workaround I can live with somehow. Still a bit weird that a structure like this
is such a pain to be deserialized with Jackson + XML. Esspecially because when deserializing JSON, this kind of structure (with a wrapper element) is the default way to go and no problem at all for Jackson. |
Quick note: Jackson 2.18.0 had a significant refactoring related to handling of constructors, and specifically helping with handling of Record constructors wrt annotations. So this issue could be easier to resolve (or possible even resolved, although not super likely). Another thing that'd be good to do would be to figure out a way to be able to optionally build and run Record-based tests, similar to how |
As per #671, we can now add XML + Record tests on this project! |
…ng under failing
Hello @cowtowncoder, I tried poking around the error. So currently, this validation in for (SettableBeanProperty cp : creatorProps) {
if (name.equals(cp.getName()) && (cp instanceof CreatorProperty)) {
cprop = (CreatorProperty) cp;
break;
}
} Do you think it's feasible to overwrite the creatorProp to match ? Or any other extension point to hook into creatorProp or something? |
@JooHyukKim could you elaborate on how that is failing? Not matching when it should? I am not sure what kind of extension/override would be needed. |
So specifically, creatorProp has name 'message' while beanProp has name 'messages'. |
Ok: so handling of
has missed a renaming somewhere, probably. Place where it is encountered is not, however, where anything can be done any more (i.e. we should not try to reverse engineer what might have happened; it would be possible to also have false match, not just mismatch) -- so property name must be kept in sync at an earlier point. |
Using
@JacksonXmlElementWrapper
and@JacksonXmlProperty
annotations with Java records results in deserialization exception.For example, I'd expect following XML:
to deserialize into following java records:
However, it results in an exception:
This is unexpected because deserialization works with equivalent java classes.
This happens with Java 17 and Jackson version 2.13.2, which is the latest one as of this writing.
I've put together a minimal project which showcases the issue: jackson-record-showcase.
The text was updated successfully, but these errors were encountered: