Tomcat 4.1 & Struts 1.2.9
Anyone seen this? I get this message when I try to access properties of my
ActionForm, though the form is clearly there, since I can print the
values using JSTL:
No getter method for property: "hPlayer1Team1Name" of bean: "
com.foo.web.action.captain.ScoreSubmitForm"
Here is the method:
com.foo.web.action.captain.ScoreSubmitForm
public class ScoreSubmitForm extends BaseActionForm{
public ScoreSubmitForm() {}
...
public String getHPlayer1Team1Name() {
return this.hPlayer1Team1Name;
}
...
}
JSP:
<html-el:text property="hPlayer1Team1Name".../>
I even decompiled the class file in the /WEB-INF/classes directory. It's
there.