转自:http://blog.sina.com.cn/s/blo…
一、请求转发与响应重定向的种类
有两种方式获得Servlet转发对象(RequestDispatcher):一种是通过HttpServletRequest的getRequestDispatcher()方法获得,一种是通过ServletContext的getRequestDispatcher()方法获得。
Servlet重定向的方法只有一种:HttpServletResponse的sendRedirect()方法。
这三个方法的参数都是一个URL形式的字符串,但在使用相对路径或绝对路径上有所区别。
二、请求转发与响应重定向中路径参数区别
假设通过http ://localhost/myApp/cool/bar.do 请求到达该方法所属的Servlet。
1、响应重定向 ◆ HttpServletResponse.sendRedirect(String)
参数可以指定为相对路径、绝对路径或其它Web应用。
i:相对路径:response.sendRedirect(“foo/stuff.do”),容器相对于原来请求URL的目录加参数来生成完整的URL——http ://localhost/myApp/cool/foo/stuff.do。
ii:绝对路径:response.sendRedirect(“/foo/stuff.do”),容器相对于Web应用本身加参数建立完整的URL,这是因为 重定向response.sendRedirect(“”)是服务器向客户端发送一个请求头信息,由客户端再请求一次服务器,请求是在服务器外进行的,即完整的url是——http ://localhost/foo/stuff.do。
iii:其它Web应用:response.sendRedirect(“http://www.xxx.com”)容器直接定向到该URL。
2、请求转发 ◆HttpServletRequest.getRequestDispatcher(String)
参数可以指定为相对路径或绝对路径。
i:相对路径情况下生成的完整URL与重定向方法相同。
ii:绝对路径与Servlet重定向不同,容器将相对于Web应用的根目录加参数生成完整的URL(即“/”根路径就是相对于虚拟路径)这是因为转发是在服务器内部进行的,写绝对路径/开头指的是当前的Web应用程序即:
request.getRequestDispatcher(“/foo/stuff.do”)生成的URL是
http ://localhost/myApp/foo/stuff.do。
3、 ◆ ServletContext.getRequestDispatcher(String)
参数只能指定为绝对路径,生成的完整URL与HttpServletRequest.getRequestDispatcher(String)相同。
同理:
JSP 提交表单给 Servlet 路径问题
JSP页面提交表单给Servlet时,路径的写法要格外注意。
例如在web.xml中注册如下的servlet:
<servlet>
<servlet-name>addStudent</servlet-name>
<servlet-class>org.mytest.addStudent</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>addStudent</servlet-name>
<url-pattern>/servlet/addStudent</url-pattern>
</servlet-mapping>
假如说,你工程名字为HibernateApp3,JSP页面提交表单给servlet时有两种写法:
1.相对路径: <formaction=servlet/addStudent method=post>…</form>
2.绝对路径: <formaction=”/HibernateApp3/servlet/addStudent” method=post>…</form>
或者 <formaction=”<%=request.getContextPath()%>/servlet/addStudent” method=post>…</form>
注意:/代表根目录,如果路径是使用/开头,Tomcat就是webApp那个目录,如果你不是/开头代表你从当前工程的目录开始,例如:webApp/HibernateApp3/
这一点非常重要,很多提交表单时发生的错误都是因为提交路径出错造成的。
附、<ahref>的路径如果是”/”开头,则表示相对于主机,如果不是则表示相对于当前请求
综上所述:这里最最关键的要能清楚发出请求目的资源的请求是在服务器内部还是服务器外部:内部时,“/”就是项目的虚拟目录;外部时,“/”就是代表主机的根目录