我正在開發一個使用struts1.2.9的應用程序,以下是我的文件夾結構。 HTTP狀態404 - 請求的路徑無效
一旦我登錄到系統,它很好,我沒有問題,以下是主頁。
,當我點擊其中有在左側的菜單上,比我得到下面的異常和頁面看起來像這樣
HTTP Status 404 - Invalid path was requested
我的菜單鏈接是這樣的:<a href=\"#\" target=\"workFrame\" onclick=\"getMenuRequest('DepartmentAction','goToHome')\">"Department"</a>
這的JavaScript:
function getMenuRequest(actionName,methodName){
document.forms[0].action=actionName+".htm";
document.forms[0].method.value=methodName;
document.forms[0].submit();
}
下面是我的動作類方法:
public ActionForward goToHome(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
//call method to verify Pagetoken
forwardRequestTo = "departmentHome";
return mapping.findForward(forwardRequestTo);
}
和下面是struts-config.xml中
<action path="/DepartmentAction" name="SecurEyesForm" type="com.secureyes.eswastha.struts.action.DepartmentAction" scope="request" parameter="method" validate="false">
<forward name="departmentHome" path="/WEB-INF/Masters/DepartmentMaster.jsp"></forward>
</action>
我使用framsets。
現在當我點擊菜單名時,它給出了上述例外。
請幫忙。
問候
感謝那些倒了投票的人,但應該評論爲什麼? –
除非您對此進行評論,否則在投票中沒有任何意義。 – SAR