javaEE 转发 和 重定向

转发 两种方法:

1,request.getRequestDispatcher(getServletContext().getContextPath() + "/path").forward(request, response);//request是HttpServletRequest的对象

2,this.getServletContext().getRequestDispatcher(getServletContext().getContextPath() + "/path").forward(request, response);

重定向

1,response.sendRedirect(getServletContext().getContextPath() + "/path"); //response是HttpServletResponse的对象

转载于:https://www.cnblogs.com/wf-l5201314/p/8297683.html

你可能感兴趣的:(javaEE 转发 和 重定向)