Web组件之间的三种跳转类型
- 请求转发(forward)
AServlet操作完,请求转发到BServlet,继续接下来的功能。客户端发送req1给s1,s1发送req1给s2,s2返回resp2给s1,s1再把resp2返回客户端。
req.getRequestDispatcher(String path).forward(req,resp);
//path:目标资源名称,跳到那里去
特点
Servlet1.java,Servlet2.java
1). 页面直接跳转,但是浏览器路径不变(s1)。
2). 共享同一个请求,所以可以共享数据。
3). 最终的输出响应为Servelt2。
4). 路径没有"/"开头为相对路径:跳转参数“xxx/s2”,则在s1的相对路径上延伸,故https://baidu.com是无法跳到百度界面。所以只能访问当前中的资源,不能跨域跳转。相对路径和绝对路径。
5). 可以访问WEB-INF 文件夹下的资源。(正常情况下不能直接访问其下资源)
应用场景:
共享请求中的数据
访问WEB-INF中的资源
- URL重定向(redirect)
AServlet操作完,重定向到BServlet,继续接下来的功能。客户端发送请求req1给s1,s1返回resp1给客户端,客户端根据resp1中的路径,发送req2给s2,s2返回resp2给客户端。简单理解为赋值重定向语句中的路径。
resp.sendRedirect(String path);
//path:目标资源名称
特点
Servlet1.java,Servlet2.java
1). 页面直接跳转,浏览器路径变为s2。
2). 两个请求,看不出来,可以在s1后加个参数,查看s2的参数,找不到这个参数,说明请求不同。故不能共享请求中的数据。
3). 最终的输出响应为Servelt2。
4). 和请求转发类似,但是可以跨域访问。相对路径,绝对路径和其他web应用如百度
5). 不可以访问WEB-INF 文件夹下的资源。
应用场景
跨域访问
缺点:可能造成表单的重复提交
- 请求包含(include)
客户端发送请求req1给s1,s1把请求req1发送给s2,s1和s2都返回响应给客户端。打印顺序按代码顺序
s2把响应返回给客户端,
req.getRequestDispatcher(String path).include(req,resp);
//path:目标资源名称,跳到那里去
Web组件数据共享的四大作用域对象
作用域对象存在的意义:在多个Web组件之间共享和传递数据
application>session>request
- pageContext:PageContext类型,表示当前jsp页面的范围
- request:HttpServletRequest类型,表示当前请求范围,只是共享同一个请求中的数据,若是不同的请求之间,是不能共享的,每次请求都是新的请求对象。
- session:HttpSession类,表示当前会话范围,只要浏览器不关闭,session就是同一个对象,就可以共享会话中的数据。
- application:ServletContext类型,表示当前应用范围Tomcat开始启动,application对象就创建好了,Tmocat关闭application对象销毁。在整个Web的生命周期中(Tomcat启动--Tomcat关闭),有且只有一个application对象。
ServletContext ctx = super.getServletContext();
ServletContext ctx2 = req.getServletContext();
//获取当前应用的上下文路径
System.out.println(ctx.getContextPath());
//获取资源的绝对路径
System.out.println(ctx.getRealPath("/WEB-INF/in.html"));
//获取局部和全局参数
System.out.println("局部:"+super.getInitParameter("encoding"));
System.out.println("全局:"+ super.getServletContext().getInitParameter("encoding"));
//全局初始化参数修改web.xml文件
<context-param>
<param-name>encoding</param-name> <param-value>UTF-8</param-value>
</context-param>
<!-->
//传统情况下web.xml中配置或者使用注解,但是只对当前的servlet有效,后期修改需要修改每一个servlet。
1.@WebServlet(value = "/context",initParams = @WebInitParam(name="encoding",value="UTF-8"))
2.<servlet>
<servlet-name>ServletContextDemo</servlet-name>
<servlet-class>com.txm._05_ServletContext.ServletContextDemo</servlet-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>ServletContextDemo</servlet-name>
<url-pattern>/app</url-pattern>
</servlet-mapping>
<-->
//设置共享信息:
obj.setAttribute(String name,Object value);
//获取共享信息:
Object value = obj.getAttribute(String name);
//修改共享信息:重新设置一个同名的
obj.setAttribute(String name,Object value);
//删除共享信息:
obj.removeAttribute(String name);
基本:一般的组件之间的数据共享,存放在request中,故只能使用请求转发
登录信息存放在session
//request,每次刷新都是1,累加不生效
Integer numInRequest = (Integer)req.getSession().getAttribute("NUM_IN_REQUEST");
if(numInRequest == null){ req.setAttribute("NUM_IN_REQUEST",1);}
else {
req.setAttribute("NUM_IN_REQUEST", 1 + numInRequest);}
//session,刷新后累加,不同浏览器都从1开始
Integer numInSession = (Integer)req.getSession().getAttribute("NUM_IN_SESSION");
if(numInSession == null){ req.getSession().setAttribute("NUM_IN_SESSION",1);}
else { req.getSession().setAttribute("NUM_IN_SESSION", 1 + numInSession);}
//application,刷新后累加,不同浏览器之间继续累加
Integer numInApp = (Integer) getServletContext().getAttribute("NUM_IN_APP");
if(numInApp == null){ getServletContext().setAttribute("NUM_IN_APP",1);}
else { getServletContext().setAttribute("NUM_IN_APP",1+numInApp);