<forward name="index" path="/front/index.do"/> 
你这是跳转到执行index.do把
又这个action么?
没有,就报找不到啊
========================
然后跳转 
到front/F0001Page.jsp页面你要实现这个要写成    path="/front/F0001Page.jsp"

解决方案 »

  1.   

    此回复为自动发出,仅用于显示而已,并无任何其他特殊作用
    楼主【jakekaka】截止到2008-07-08 12:32:51的历史汇总数据(不包括此帖):
    发帖的总数量:4                        发帖的总分数:220                      每贴平均分数:55                       
    回帖的总数量:3                        得分贴总数量:1                        回帖的得分率:33%                      
    结贴的总数量:0                        结贴的总分数:0                        
    无满意结贴数:0                        无满意结贴分:0                        
    未结的帖子数:4                        未结的总分数:220                      
    结贴的百分比:0.00  %               结分的百分比:0.00  %                  
    无满意结贴率:---------------------无满意结分率:---------------------
    如何结贴请参考这里:http://topic.csdn.net/u/20080501/09/ef7ba1b3-6466-49f6-9d92-36fe6d471dd1.html
      

  2.   

    path="/front/F0001Page.jsp"这样写不行,因为我要到后台数据库去查询数据返回前台。所以必须有一个事件去驱动他。
      

  3.   

    <global-forwards>  
          <forward name="index" path="/index.do"/> 
    </global-forwards> 
    <action-mappings> 
      <!--首页 --> 
      <action path="/index" type="com.stone.shopping.action.FrontAction"> 
          <forward name="index" path="/front/F0001Page.jsp" /> 
      </action> 
    </action-mappings>
      

  4.   

    你这么写没有问题,其他action只要这么这么写
    return mapping.findForward("index");然后把<action path="/front/index" type="com.stone.shopping.action.FrontAction">
          <forward name="index" path="/front/F0001Page.jsp" />
      </action> 
    里面的forward的name改成别的,比如success
    然后再FrontAction里面return mapping.findForward("success");