重定向是一种发送回客户端的响应,而转发委托完全在服务器端进行,转发 *** 作的结果将返回给客户端,就好像它仅来自原始URL。
另一个区别是前向委派只能用于应用程序内资源,而重定向命令可以将客户端浏览器重定向到当前域之外。
例子:// Sends a temporary redirect to the HTTP client. only absolute URLs are allowed.ServletResponse.sendRedirect(String location);// Delegates one HttpRequest to another dynamic or static resourceHttpRequest.getRequestDispatcher("example.jsp").forward(request, response);// Includes/enriches current response with another dynamic or static resourceHttpRequest.getRequestDispatcher("example.html").include(request, response);
在这里可以找到另一个很好的解释:
sendRedirect()和forward()之间的区别
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)