No getter method for property: "userName" of bean: "result"
pallavi chaudhari
Ranch Hand
Joined: Jul 02, 2008
Posts: 54
posted
0
Hello all,
i am getting No getter method for property: "userName" of bean: "result" this exception.I serched this forum for same got lot of solutions as change property to proper javabean standards tried that but it not helped.
Does the object contained in the form property results have a property named userName? The *form* does, but that's not what your code is asking for: your code is iterating over a list of unknown (to us) objects, each of which is expected to have a userName property.
pallavi chaudhari
Ranch Hand
Joined: Jul 02, 2008
Posts: 54
posted
0
Thanks David Newton ,
Got your point and did changes in code......that solved my problem