我填寫表格,數據在prices.jsp
頁這樣錯誤來填充數據表
<tbody>
<c:forEach items="${listrooms}" var="listrooms">
<tr>
<td>${listrooms.getClassId()}</td>
<td>${listrooms.getBeds()}</td>
<td>${listrooms.getPrice()}</td>
</tr>
</c:forEach>
從列表中的數據,我從行動得到
session.setAttribute("listrooms", roomService.getRooms());
return "prices"; //redirect to page
listrooms
是not null(我使用調試器進行了檢查),它包含Room
對象,其中有方法getClassId(),getBeds(),getPrice()
。但我有一個錯誤
The function getClassId must be used with a prefix when a default namespace is not specified
有什麼不對?
嘗試$ {} listrooms.classId所以 – DaveH