虽然我试图返回列表它的抛出没有消息身体编写器已被发现响应类ArrayList.
我有代码如下:
@POST @Path("/{scope}/{application}/tables") @Produces("application/xml") public List<String> getTableNames(@PathParam("scope") String scope,@PathParam("application") String application,Request request) { // For example,I am returning a list of String return new ArrayList<String>(4); }
请帮帮我.提前致谢
解决方法
要返回列表,最好将其包装为注释@XmlRootElement的容器,并将该列表作为字段提供,注释为@XmlElement.
像这样:
@XmlRootElement public class Container { @XmlElement public List yourlist; }