public class LoginAction extends ActionSupport{
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
return mapping.findForward("success");
}
}
這段代碼 execute 中的 屬性都是做什麼的 本人初學者請大神指點
ActionMapping 主要是action跳轉用的
ActionForm 從頁面獲取參數或者後台設置參數到頁面
HttpServletRequest http請求對象,可以通過它獲取頁面對象
HttpServletResponse http應答對象,可以通過它應答頁面請求