我有一个功能说:
public void display(ActionRequest areq, ActionResponse ares) throws Exception,PortletException,IOException {
String name= areq.getParameter("name");
String add= areq.getParameter("add");
String phone= areq.getParameter("phone");
}
我有一个 jsp 说 disp.jsp 它将用户输入传递给上述函数显示。现在我在 display() 函数中对上述数据进行了一些处理后,我想在一个 jsp 页面上显示结果,比如 new.jsp。我应该如何继续它?我试过类似的东西:
areq.setAttribute("name",name);
areq.getRequestDispatcher("new.jsp").forward(areq, aresp); but it shows an error that getRequestDispatcher is not defined for actionrequest and actionresponse.
我正在使用 liferay 框架