私は言う機能を持っています:
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");
}
ユーザー入力を上記の関数表示に渡すdisp.jspというjspがあります。上記のデータを display() 関数で処理した後、new.jsp などの 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フレームワークを使用しています