| Author |
Error: No getter method for property
|
Chris Boldon
Ranch Hand
Joined: Aug 10, 2006
Posts: 190
|
|
I am getting the following error:
I have searched the internet and found many such errors, but the common solutions don't seem to apply here. ProjectListForm does in fact have a setter for property. ProjectListForm.java ProjectListAction.java projectList.jsp struts-config.xml
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
Here's the culprit: <jsp:useBean id = "projectListForm" scope = "request" class = "com.x.strutstut.struts.action.ProjectListAction" /> Change this to <jsp:useBean id = "projectListForm" scope = "request" class = "com.x.strutstut.struts.form.ProjectListForm" />
|
Merrill
Consultant, Sima Solutions
|
 |
Chris Boldon
Ranch Hand
Joined: Aug 10, 2006
Posts: 190
|
|
That was the problem. Thank you very much for the reply.
|
 |
 |
|
|
subject: Error: No getter method for property
|
|
|