码迷,mamicode.com
首页 > 其他好文 > 详细

关于servlet中重定向、转发的地址问题

时间:2017-08-25 20:31:36      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:this   etc   get   gets   text   redirect   服务   direct   dir   

  先写一个正斜杠"/",再判断是服务器使用该地址还是网站使用该地址。

  访问网络资源用/,访问硬盘资源用\。

  例如:

转发:      request.getRequestDispatcher("/fenYe").forward(request, response);    ①

重定向:    response.sendRedirect("/dayo6/1.html");                                               ②

获取真实URL:     this.getServletContext().getRealPath("/1.jsp");         ①

作为流:                this.getServletContxt().getResourceAsStream("/1.jsp");             ①

 

 

html中:

  <a href="/day06/1.html"></a>         ②

       <form action="/day06/1.html">   ②

 

 上面①代表服务器使用,②代表网站使用。day06为项目名字。

 

JSP中获取工程名字EL表达式:

  ${pageContext.request.contextPath}

关于servlet中重定向、转发的地址问题

标签:this   etc   get   gets   text   redirect   服务   direct   dir   

原文地址:http://www.cnblogs.com/qlqwjy/p/7429510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!