07-12
01
org.xml.sax.SAXParseException: Attribute parmaeter must be declared for element type action
作者:Java伴侣 日期:2007-12-01
struts_config.xml中写了错别字了哈,原来这样的错误在JB下是不能启动的,但没想到eclipse中竟然起来了,不过报错。
错误如下:
org.xml.sax.SAXParseException:Attribute "parmater" must be declared for element type "action".
原来写的action是直接跳转的
<!--action parameter="/login.jsp" path="/tologin" scope="request" type="org.apache.struts.actions.ForwardAction"/-->
后来我又写了一个action mapping是跳转到自定义的Action去,但是parameter忘了去掉
<!--用户登陆-->
错误如下:
org.xml.sax.SAXParseException:Attribute "parmater" must be declared for element type "action".
原来写的action是直接跳转的
<!--action parameter="/login.jsp" path="/tologin" scope="request" type="org.apache.struts.actions.ForwardAction"/-->
后来我又写了一个action mapping是跳转到自定义的Action去,但是parameter忘了去掉
<!--用户登陆-->
转型失败遇到的错误
错误例子如下:
错误例子如下:
复制内容到剪贴板 程序代码
<html:select property="news.cate">
<logic:iterate id="cate" name="CATES" scope="request" type="order.vo.NewsCateVO">
<option value="<bean:write name="cate"/>">
<bean:write name="cate" property="name"/>
</option>
</logic:iterate>
</html:select>
<logic:iterate id="cate" name="CATES" scope="request" type="order.vo.NewsCateVO">
<option value="<bean:write name="cate"/>">
<bean:write name="cate" property="name"/>
</option>
</logic:iterate>
</html:select>