在没有[xmlns =“”]的情况下将对象序列化为XML

时间:2014-12-09 06:42:16

标签: java json xml jackson xml-namespaces

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>
    }
}

2 个答案:

答案 0 :(得分:1)

如上次发布到issue 32所述:

  

使用Stax实现而不是与JDK捆绑的实现:   Woodstox和Aalto都以不会产生额外效果的方式工作   (无害的)名称空间声明。

答案 1 :(得分:0)

只是添加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();