`
sunnylocus
  • 浏览: 877042 次
  • 性别: Icon_minigender_1
  • 来自: 美国图森
社区版块
存档分类
最新评论

Cannot find ActionMappings or ActionFormBeans 错误解决

    博客分类:
  • Java
阅读更多

    前几天部署在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">

 

重启服务器,一切正常。不过倒现在我还是不明白,这个项目一直运行的好好的,而且服务器密码只有我和另一个同事知道,我们两个都没有改动,怎么突然出现了这个错误呢?今天见鬼了!!

分享到:
评论

相关推荐

    ssh框架错误总结

    如果web.xml文件中没有配置struts-config.xml的相关信息,将导致Cannot find ActionMappings or ActionformBeans collection错误。 解决方法:在web.xml文件中添加struts-config.xml的配置信息,确保struts-config....

    SSH错误集锦

    6. “Cannot find ActionMappings or ActionFormBeans collection” 这个错误暂未解决。 7. “Cannot retrieve mapping for action XXX” 这个错误通常发生在 .jsp 的标签里指定 action='/XXX' ,但这个 Action ...

    【开发经验】Struts常见错误及原因分析 .doc

    5. 异常`javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection` 这个异常通常是由于`web.xml`中没有正确配置`Struts`的`ActionServlet`或映射`.do`扩展名。确保`web.xml`中...

    J2EE综合—Struts常见错误的全面总结

    Cannot find ActionMappings or ActionFormBeans collection **错误描述**:当Struts无法找到ActionMappings或ActionFormBeans集合时,会抛出此异常。这通常是由于配置文件中缺少必要的定义。 **解决方法**: - ...

    Struts常见错误及原因分析

    5. Exception javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection 这个异常表明struts-config.xml文件可能没有正确加载,或者在web.xml中未正确配置Struts的初始化参数。...

    Struts常见错误及原因分析.

    #### 五、异常 Exception javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection **异常描述**: 该异常表明Struts框架未能找到Action映射或Form Bean集合。 **可能原因**:...

    SSH框架中最容易出现的问题集锦

    javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection **问题描述:** 在运行项目时抛出异常,提示找不到Action Mappings或Action Form Beans集合。这通常意味着Struts配置...

    java struts常见错误以及原因分析

    5. **Exception javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection** 这个错误可能是因为在`web.xml`中没有正确配置Struts的`ActionServlet`或`.do`扩展名映射,或者配置...

    struts常见异常及处理

    “Cannot find ActionMappings or ActionFormBeans collection” - **异常描述**:无法找到 Action 映射或 ActionForm 集合。 - **解决方案**: - 确认 Struts 配置文件 `struts-config.xml` 正确配置了所有需要...

    Struts常见错误汇总.txt

    #### 六、Cannot find ActionMappings or ActionFormBeans collection 此异常通常发生在 Struts 初始化时未能找到 `&lt;action-mappings&gt;` 或 `&lt;form-beans&gt;` 集合。这可能是由于 `struts-config.xml` 文件格式不正确...

Global site tag (gtag.js) - Google Analytics