A.name B.attribute C.scope D.path
A.return"show.jsp" B.return"show" C.returnmapping.findForward("show") D.returnmapping.findForward("show.jsp")
對于以下代碼,HelloAction希望把請求轉(zhuǎn)發(fā)給hello.jsp,在HelloAction的execute方法中如何實現(xiàn)()
A.return(newActionForward(mapping.getInput())) B.return(mapping.findForward(”SayHello”)) C.return(mapping.findForward(“hello.jsp”)) D.return(mapping.findForward(“/hello.jsp”))