Iam totally new to
struts,
I have a
jsp named Trial.jsp which has tag
<html:select property = 'selName' name="TrialFormBean">
<html
ptions .....>
</html:select>
Also have a formBean by name TrialFormBean which contains the following code,
private
String selName;
...
...
public String getName()
{
return strName;
}
public void setName(String Name)
{
strName = Name;
}
In struts-config.xml have included TrialFormBean as
<form-beans>
<form-bean name="TrialFormBean"
type="formBeans.TrialFormBean"/>
</form-beans>
<action-mappings>
<action
path="/Trial"
type="actions.TrialAction"
name="TrialFormBean">
</action>
</action-mappings>
But i get the following error message:
No getter method available for property selName for bean under name TrialFormBean
What could be my mistake.