如何以XML或JSON返回Question对象的列表?

@Path("all")
@GET
public List<Question> getAllQuestions() {
    return questionDAO.getAllQuestions();
}

我得到这个异常:

最佳答案

尝试:

@Path("all")
@GET
public ArrayList<Question> getAllQuestions() {
    return (ArrayList<Question>)questionDAO.getAllQuestions();
}

如果您的目标是返回商品 list ,则可以使用:
@Path("all")
@GET
public Question[] getAllQuestions() {
    return questionDAO.getAllQuestions().toArray(new Question[]{});
}

编辑
在上面添加了原始答案

10-08 12:55