Struts的get方法异常,快烦死我了
错误报告:org.apache.jasper.JasperException: No getter method available for property jobtype for bean under name org.apache.struts.taglib.html.BEAN
我的jsp里面的内容
<html:select property="jobtype" > <html:option value="daily">日次</html:option>
<html:option value="monthly">月次</html:option>
<html:option value="report">报表</html:option> </html:select>
formbean里面的内容:
private String jobtype = "";
public String getJobtype()
{
return (this.jobtype);
}
public void setJobtype(String lala) {
this.jobtype = lala;
}
各位兄弟,有没有遇到过类似问题的?