程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> tomcat-Tomcate6 運行一段時間後 某些Action 報 404錯誤

tomcat-Tomcate6 運行一段時間後 某些Action 報 404錯誤

編輯:編程綜合問答
Tomcate6 運行一段時間後 某些Action 報 404錯誤

centos操作系統 、Tomcate6 服務器,運行一段時間後有幾個Action報 404錯誤
No result defined for action and result input
前端用了 urlrewrite 做偽靜態

 <rule>
    <from>/desktop/index</from>
    <to>/desktop/index.action</to>
 </rule>

Action配置 :

<action name="index" class="deskTopAction" method="search">
    <result>desktop.jsp</result>
    <result name="login">../login.jsp</result>
</action>

Action類方法

public String search(){
        member = (Member)this.httpSession.getAttribute("curMember");
        if(member == null){//游客身份登錄 ,暫時去掉
            return "login";
        }
        this.httpSession.setAttribute("CurQQMember",member);
        islogin = "1";
        return "success";
    }

最佳回答:


No result defined for action and result input

好像是前端提交的什麼請求缺了數據還是缺了參數,struts會自動跳到“input”那個結果去,你沒有配置input,就報錯了,LZ可以仔細檢查一下參數有沒有可能缺失

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved