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可以仔細檢查一下參數有沒有可能缺失