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
はnullではなく(デバッガーで確認しました)、Room
メソッドを持つオブジェクトが含まれていますgetClassId(),getBeds(),getPrice()
。しかし、私はエラーがあります
The function getClassId must be used with a prefix when a default namespace is not specified
なにが問題ですか?