struts1.x 日常错误集合

1.Cannot find bean org.apache.struts.taglib.html.BEAN in any scope

原因一:<form   action="/Logon.do">  
  改成<html:form   action="/Logon.do">  
  原因是你没有办法生成form实例

原因二: 可能是你的web-inf目录下,资源文件不全!像*.tld文件等.


2. Cannot find bean under name org.apache.struts.taglib.html.BEAN

原因:struts的表单 必须要在html:form标签内

 

3.javax.servlet.jsp.JspException: No getter method available for property area for bean under name org.apache.struts.taglib.html.BEAN

原因:struts表单的property 也就是将来生成的表单name  ,必须在对应的form里 有getter setter方法。

你可能感兴趣的:(struts1.x 日常错误集合)