在控制器中使用
getRequest().getRequestDispatcher("/ControllerName") .forward(getRequest(),getResponse());
render("./ControllerName")
this.forwardAction("http://www.baidu.com");
均无法实现跳转,(其中forwardAction的render方法好像没有实现?---jFinal2.2)
只有
getResponse().sendRedirect("./certificationSave");
能实现,怎么回事?
项目:JFinal