Jackson XML - deserializing XML with namespace prefixes
问题 I'm working with the Jackson XML plugin (https://github.com/FasterXML/jackson-dataformat-xml), and I'm not sure if it's supported, but I'm wondering if it's possible to both serialize and deserialize XML with namespace prefixes, like so: <name:Foo> <name:Bar> <name:x>x</name:x> <name:y>y</name:y> </name:Bar> </name:Foo> I can generate this type of XML using Jackson's plugin like so: @JacksonXmlProperty(localName="name:Bar") public Bar getBar() { return bar; } However, I can't find a way to