我正在使用 RESTEasy 编写 RESTful Web 服务并尝试编写包含 HashMap 的响应。Web 服务生成 JSON 或 XML。JSON 映射正确,但 XML 映射没有内容。RESTEasy @WrappedMap 注释应该将 Maps 编组为 XML。
@XmlRootElement(name="Response")
public class RootResponse {
private HashMap<String, String> test;
public RootResponse() {
test = new HashMap<String, String>();
test.put("Fred", "Wilma");
test.put("Barney", "Betty");
}
@XmlElement
@WrappedMap(map="test", key="name", entry="spouse")
public HashMap<String, String> getTest() {
return this.test;
}
}
JSON输出:
{
"test": {
"Fred": "Wilma",
"Barney": "Betty"
}
}
XML 输出:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Response>
<test/>
</Response>
如果我省略 @WrappedMap 注释,我会得到相同的输出。
@WrappedMap 不适用于属性吗?