1. 程式人生 > >Error:Cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope

Error:Cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope

原因:html標籤和struts標籤混用,或者表單元素外面沒有<html:form>標籤包裹。

解決:統一標籤

<html:form action="/login.do">
  <bean:message key="info.input.account"/>
  <html:text property="account"></html:text><br>
  <bean:message key="info.input.password"/>
  <html:text property="password"
></html:text>
</html:form>