1、请求转发
request.getRequestDispatcher("other.jsp").forward(request, response);
2、请求重定向
response.sendRedirect("other.jsp");
response.sendRedirect("http://");
注:重定向可以到本站点意外的地址
本文共 215 字,大约阅读时间需要 1 分钟。
1、请求转发
request.getRequestDispatcher("other.jsp").forward(request, response);
2、请求重定向
response.sendRedirect("other.jsp");
response.sendRedirect("http://");
注:重定向可以到本站点意外的地址
转载于:https://blog.51cto.com/11147669/1905161