当前位置: 代码迷 >> HTML/CSS >> Struts标签之Cannot find bean under name org.apache.struts.taglib.html.BEAN异常
  详细解决方案

Struts标签之Cannot find bean under name org.apache.struts.taglib.html.BEAN异常

热度:869   发布时间:2012-11-15 15:16:14.0
Struts标签之Cannot find bean under name org.apache.struts.taglib.html.BEAN错误

?

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


一、报了这个错就说明相关标签没放<form>里。

比如:

<html:select property="111">

<html:option value="1">1</option>

</html:seelct>

<html:form action="/select111.do" method="post">

</html:form>

这样就会出错,把html:select标签放到html:form里就OK

改为:

<html:form action="/select111.do" method="post">

<html:select property="111">

<html:option value="1">1</option>

</html:seelct>

</html:form>

二、后面还有错,那是因为html:form是没有id和name属性。

  相关解决方案