2

我有一个与此堆栈溢出问题JSP not find property in bean非常相似的问题。还有这个问题javax.el.PropertyNotFoundException: Property 'foo' not found on type com.example.Bean。但是,就我而言,我认为我已经按照书本完成了所有工作,但仍然出现错误。 以下是我的 javabean 代码片段的一部分

    private double otheramount;
    private int no;
    private String name;


        public double getOtherAmount()
            {
                return otheramount;
            }
            public void setOtherAmount(double newotheramount)
            {
                otheramount = newotheramount;        
            }
public int getNo()
            {
                return no;
            }
            public void setNo(int newno)
            {
                no = newno;        
            }
public String getName()
            {
                return name;
            }
            public void setName(String newname)
            {
                name = newname;        
            }

以下是我的 DAO 代码的一部分

while(rs.next())
         {

              MyBean mybean = new MyBean();

              mybean.setNo(rs.getInt("No"));
              mybean.setName(rs.getString("Full_Names"));              
              mybean.setOtherAmount(rs.getDouble("OtherAmount"));              

              allresults.add(mybean);



         }

下面是部分servlet代码

try
{
ArrayList allresults = mydao.search();    
request.setAttribute("allresults",allresults);
RequestDispatcher dispatch =request.getRequestDispatcher("Pages/mypage.jsp");
dispatch.forward(request, response);
}
catch(Exception ex)
{
}

下面是我在 JSP 页面中的 HTML 和 JSTL 代码

<c:forEach var="results" items="${requestScope.allresults}">
  <tr>
    <td><c:out value="${results.no}"></c:out></td>
    <td><c:out value="${results.name}"></c:out></td>
    <td><c:out value="${results.otheramount}"></c:out></td>
  </tr>
</c:forEach>

问题是,当我评论该部分时<c:out value="${results.otheramount}"></c:out>,它运行正常并且没有引发错误。但是,取消注释这部分会导致找不到属性的错误。作为旁注,属性 otheramount 是在很久以后添加的。

我正在使用 Netbeans 7.1.2。非常感谢任何帮助。

4

1 回答 1

7

Bean 属性名称不是根据私有字段名称解析的。相反,它们是根据 getter 方法名称解析的。

因此,在您的特定情况下,属性名称不是otheramount,而是otherAmount

也可以看看:

于 2013-04-15T14:32:30.890 回答