前几天部署在Tomcat 5.5容器里一个项目莫名其秒的出现错误,访问login.jsp登陆页面就会报
javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection
从控制台日志发现只要服务器一启动,struts就会报两个错误
第一个错误不能连网或着找不到资源就会报这样的错误,Struts它要连接什么?做什么用的呢,这个问题想了一天,恍然大悟,在struts-config.xml 第一行是dtd声明
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">
strtus会到http://struts.apache.org/dtds/struts-config_1_2.dtd获得dtd文件,以此来验证struts-config.xml文件格式合不合法。
会不会因为这儿出了问题,换了个头如下:
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
重启服务器,一切正常。不过倒现在我还是不明白,这个项目一直运行的好好的,而且服务器密码只有我和另一个同事知道,我们两个都没有改动,怎么突然出现了这个错误呢?今天见鬼了!!
分享到:
- 2009-02-05 17:12
- 浏览 1569
- 评论(0)
- 论坛回复 / 浏览 (0 / 1710)
- 查看更多
相关推荐
如果web.xml文件中没有配置struts-config.xml的相关信息,将导致Cannot find ActionMappings or ActionformBeans collection错误。 解决方法:在web.xml文件中添加struts-config.xml的配置信息,确保struts-config....
6. “Cannot find ActionMappings or ActionFormBeans collection” 这个错误暂未解决。 7. “Cannot retrieve mapping for action XXX” 这个错误通常发生在 .jsp 的标签里指定 action='/XXX' ,但这个 Action ...
5. 异常`javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection` 这个异常通常是由于`web.xml`中没有正确配置`Struts`的`ActionServlet`或映射`.do`扩展名。确保`web.xml`中...
Cannot find ActionMappings or ActionFormBeans collection **错误描述**:当Struts无法找到ActionMappings或ActionFormBeans集合时,会抛出此异常。这通常是由于配置文件中缺少必要的定义。 **解决方法**: - ...
5. Exception javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection 这个异常表明struts-config.xml文件可能没有正确加载,或者在web.xml中未正确配置Struts的初始化参数。...
#### 五、异常 Exception javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection **异常描述**: 该异常表明Struts框架未能找到Action映射或Form Bean集合。 **可能原因**:...
javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection **问题描述:** 在运行项目时抛出异常,提示找不到Action Mappings或Action Form Beans集合。这通常意味着Struts配置...
5. **Exception javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection** 这个错误可能是因为在`web.xml`中没有正确配置Struts的`ActionServlet`或`.do`扩展名映射,或者配置...
“Cannot find ActionMappings or ActionFormBeans collection” - **异常描述**:无法找到 Action 映射或 ActionForm 集合。 - **解决方案**: - 确认 Struts 配置文件 `struts-config.xml` 正确配置了所有需要...
#### 六、Cannot find ActionMappings or ActionFormBeans collection 此异常通常发生在 Struts 初始化时未能找到 `<action-mappings>` 或 `<form-beans>` 集合。这可能是由于 `struts-config.xml` 文件格式不正确...