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忘了去掉
<!--用户登陆-->
<action parameter="/login.jsp" path="/tologin" parameter="tologin" scope="request" type="order.action.user.LoginAction"/>
错误如下:
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忘了去掉
<!--用户登陆-->
<action parameter="/login.jsp" path="/tologin" parameter="tologin" scope="request" type="order.action.user.LoginAction"/>
评论: 0 | 引用: 0 | 查看次数: 1737
发表评论