1. 程式人生 > >EL表示式:Property 'id' not readable on type int

EL表示式:Property 'id' not readable on type int

錯誤資訊:Property ‘id’ not readable on type int,如下圖:
這裡寫圖片描述
前面為了偷懶,User實體類直接寫在了Controller裡,
這裡寫圖片描述
所以User沒有Public修飾,導致上面圖一的結果

<c:forEach var = "user" items="${userlist}">
  <tr>
    <td>${user.id} </td>
    <td>${user.name} </td>
  </tr>
</c:forEach>