换了一个skin,主要是想换换心情。接下来我对这个blog进行了很多先前没有优化,还有添加了些新功能。比如说,每篇日志下的选项卡功能,这个功能最早是用了onmousemove,但总觉得鼠标放上就变化,感觉不稳。所以现在换成onmousedown。呵呵
Tags: onmousemove onmousedown 鼠标
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忘了去掉
<!--用户登陆-->