未找到响应类 ArrayList 的消息正文编写器
2022-09-04 08:21:00
当我尝试返回 List 时,它的抛出 响应类 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);
}
请帮帮我。提前致谢