-1
我已經在NetbeansIDE8.2中編寫了一個安靜的界面,並且我已經用PostMan App以chorme進行了調試,然後出現了一個異常,我將在這裏顯示圖像: the HTTP ERROR 500當我使用Jeddic時如何解析http 500
,我的代碼是在這裏,我有一個arryList返回到瀏覽器
@Path("/getStu")
@GET
public List<TfFreshstudent> queryStudentNoDomitory()
{
List<TfFreshstudent> studentList= cq.queryFreshstudentNoDomitory();
if (studentList.isEmpty()) {
return studentList;
}
return null;
}
,我已經嘗試了自動創建代碼的其他子,誤差也發生了:
@GET
public List<TfDormitory> getAllTfDormitories() {
log.debug("REST request to get all TfDormitories");
List<TfDormitory> tfDormitories = tfDormitoryFacade.findAll();
return tfDormitories;
}
我也認爲這也許是返回類型錯誤也許ArryList不能顯示在瀏覽器中,也許我必須將它解析爲JSON類型或響應
a * 500 *是服務器端錯誤消息。事實上,您發佈的「圖片」清楚地表明某些課程缺失 –