response_sendRedirect和request_getRequestDispatcher()_forward的区别.

时间:2012-08-04 16:20:40
【文件属性】:

文件名称:response_sendRedirect和request_getRequestDispatcher()_forward的区别.

文件大小:34KB

文件格式:HTM

更新时间:2012-08-04 16:20:40

重定向

跳转方式 http://localhost:8080/Test应用 运用forward方法只能重定向到同一个Web应用程序中的一个资源。而sendRedirect方法可以让你重定向到任何URL。 表单form的action="/uu";sendRedirect("/uu");表示相对于服务器根路径。如http://localhost:8080/Test应用(则提交至http://localhost:8080/uu); Forward代码中的"/uu"则代表相对与WEB应用的路径。如http://localhost:8080/Test应用(则提交至http://localhost:8080/Test/uu);


网友评论