此回复为自动发出,仅用于显示而已,并无任何其他特殊作用
楼主【jspenguin】截止到2008-07-04 23:44:36的历史汇总数据(不包括此帖):
发帖的总数量:17                       发帖的总分数:310                      
结贴的总数量:13                       结贴的总分数:230                      
无满意结贴数:7                        无满意结贴分:170                      
未结的帖子数:4                        未结的总分数:80                       
结贴的百分比:76.47 %               结分的百分比:74.19 %                  
无满意结贴率:53.85 %               无满意结分率:73.91 %                  
楼主加油

解决方案 »

  1.   

    /pro_struts/index.htm 有这个index.htm页面吗?貌似没有找到这个文件啊
      

  2.   

    <form action="/pro_struts/index.do" method="post"> 这样试一试
      

  3.   

    <form-bean name="IndexForm" type="com.Action.IndexActionForm"> </form-bean> </form-beans><action path="/index" name="IndexForm" type="com.ActionForm.IndexAction" scope="request" input="/index.htm"> 
    是不是写反了???
      

  4.   

    是不是应该这样啊<form-bean name="IndexForm" type="com.ActionForm.IndexActionForm"> </form-bean> </form-beans> <action path="/index" name="IndexForm" type="com.Action.IndexAction" scope="request" input="/index.htm"> 
      

  5.   

    用楼上的解决了这个问题,现在报出了500错误
    HTTP Status 500 - No action instance for path /index could be created--------------------------------------------------------------------------------type Status reportmessage No action instance for path /index could be createddescription The server encountered an internal error (No action instance for path /index could be created) that prevented it from fulfilling this request.
      

  6.   

    类没有编译完全你在eclipse中 project/clean一下你的工程
      

  7.   

    <action path="/index" name="IndexForm" type="这里是否有你正确的Action" scope="request"> 
      

  8.   

    struts不支持补全,com.ActionForm.IndexAction这种类全名最好去对应的类里去copy
      

  9.   

    你的web.xml呢...里面有个过滤.do的配置...你看下错没.
      <servlet-mapping>
        <servlet-name>actionServlet</servlet-name>
        <url-pattern>*.do</url-pattern>
      </servlet-mapping>
      

  10.   

    上面说的很多了 基本都涵盖了 要是还是不行 真不知道是什么了index不会是保留的啊 呵呵 换个名字试试看呢
      

  11.   

    还有中更痛苦的是你的action 没有加载到sprint 容器中 是因为你的配置写错了ok