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
不为空(我用调试器检查过),它包含Room
有方法的对象getClassId(),getBeds(),getPrice()
。但我有一个错误
The function getClassId must be used with a prefix when a default namespace is not specified
怎么了?