有没有办法通过jackson将java var(例如int)序列化为xml属性?我找不到任何特定的 jackson 或 json 注释(@XmlAttribute @javax.xml.bind.annotation.XmlAttribute)来实现这一点。
例如
public class Point {
private int x, y, z;
public Point(final int x, final int y, final int z) {
this.x = x;
this.y = y;
this.z = z;
}
@javax.xml.bind.annotation.XmlAttribute
public int getX() {
return x;
}
...
}
我想要的是:
<point x="100" y="100" z="100"/>
但我得到的是:
<point>
<x>100</x>
<y>100</y>
<z>100</z>
</point>
有没有办法获取属性而不是元素?感谢帮助!