JSP Exception: no getter method
I had my jsp and displaybean working and displaying contents properly. Now I just added a new field for displaybean and I am getting an javax.servlet.jsp.JspException: No getter method for property: "lRating" of bean: "URLDisplayBean"
I added this field "lRating" and proper setter and getter methods in class URLDisplayBean.java. In my jsp pages, I have the following line:
<bean:write name="URL_DISPLAY_BEAN" property="lRating" />. I have something similar before this line like:
<bean:write name="URL_DISPLAY_BEAN" property="area" />. Without adding the buggy line, the contents can be displayed proiperly. But after I added the line for "lRating" it complains about no getter method which I clearly I have in my URLDisplayBean.java. URL_DISPLAY_BEAN is added as an attribute for the request in my execute() as:
URLDisplayBean a = new URLDisplayBean();
request.setAttribute("URL_DISPLAY_BEAN", a);
Is there anything else I need to change?

