在没有[xmlns =“”]的情况下将对象序列化为XML
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在没有[xmlns =“”]的情况下将对象序列化为XML相关的知识,希望对你有一定的参考价值。
Jackson XML手册像这样写对象
<Simple>
<x>1</x>
<y>2</y>
</Simple>
在https://github.com/FasterXML/jackson-dataformat-xml但在我的代码中,它有[xmlns =“”],它不能在我的业务中。
我的代码:
public class Sample {
private int id=1;
private String name="abc";
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public static void main(String[] args) throws Exception {
XmlMapper mapper = new XmlMapper();
System.out.println(mapper.writeValueAsString(new Sample()));
//<Sample xmlns=""><id>1</id><name>abc</name></Sample>
}
}
答案
如上次发布给issue 32所述:
使用Stax实现而不是与JDK捆绑的实现:Woodstox和Aalto都以不会产生额外(无害)命名空间声明的方式工作。
另一答案
只是添加woodstox依赖已经解决了你的问题。
<dependency>
<groupId>com.fasterxml</groupId>
<artifactId>jackson-xml-databind</artifactId>
<version>0.6.2</version>
</dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
<version>4.4.1</version>
</dependency>
您可以使用默认(反)序列化
XmlMapper mapper = new XmlMapper();
以上是关于在没有[xmlns =“”]的情况下将对象序列化为XML的主要内容,如果未能解决你的问题,请参考以下文章
将 Xml 反序列化为对象时出错 - xmlns='' 不是预期的
将 Xml 反序列化为对象时出错 - xmlns='' 不是预期的