多项选择题
A.path B.type C.name D.input
在struts的配置文件中,action节点的哪一个属性用来action指定引用的actionForm()A....
单项选择题在struts的配置文件中,action节点的哪一个属性用来action指定引用的actionForm()
A.name B.attribute C.scope D.path
Action中的execute方法执行完毕后,需要跳转到show.jsp这个页面,下列写法中那些从形式上是正确...
单项选择题Action中的execute方法执行完毕后,需要跳转到show.jsp这个页面,下列写法中那些从形式上是正确的()
A.return"show.jsp" B.return"show" C.returnmapping.findForward("show") D.returnmapping.findForward("show.jsp")
对于以下代码,HelloAction希望把请求转发给hello.jsp,在HelloAction的execut...
对于以下代码,HelloAction希望把请求转发给hello.jsp,在HelloAction的execute方法中如何实现()
A.return(newActionForward(mapping.getInput())) B.return(mapping.findForward(”SayHello”)) C.return(mapping.findForward(“hello.jsp”)) D.return(mapping.findForward(“/hello.jsp”))