I have a login form that leads to another action form.
This populates an Arraylist from database and puts in request
ArrayList userList = getUser();
request.setAttribute("userList",userList);
When i try to access values from action-class , all values from database are printed as well.
I have following code in
jsp:
<logic:iterate id="userList" name="userList" scope="request" >
<bean:write name="userList" property="name" />
</logic:iterate>
I get folowing error :
No getter method for property name of bean userList
Any clue?