@JsonUnwrapped不起作用

时间:2015-02-13 08:58:36

标签: java json

我的代码:

 @JsonUnwrapped(enabled = true, prefix = "a")
public A _v;


@XmlElement(name="m")
public String getM()
{
    return _m;
}

序列化后我的输出:

{ 米:5 }

为什么我没有关于A(未包装的对象)的任何信息?

0 个答案:

没有答案