Cannot find ActionMappings or ActionFormBeans collection不是已经提醒你了吗?
看看你的struts-config.xml配置文件

解决方案 »

  1.   

    在你的struts-config.xml中没有设置对应的Action或者ActionForm
      

  2.   

    比如:
    <form-beans>
    <form-bean name="logonForm" type="presentation.form.LogonForm"/>
    ...
    </form-beans>
    <action-mappings>
    <action path="/logon" type="presentation.action.LogonAction" name="logonForm" scope="session"/>
    </action-mappings>
    .....
    然后就可以在jsp中用/logon.do来定向了
      

  3.   

    呵呵我怀疑你的strrrruts根本没有找到你的
    struts-config.xml文件 到你的web.xml中看看你的路径是否正确?