博客
关于我
九个内置对象&四大作用域
阅读量:706 次
发布时间:2019-03-21

本文共 665 字,大约阅读时间需要 2 分钟。

名称 类型 含义 获取方式
request HttpServletRequest 封装所有请求信息 servlet方法参数中
response HttpSerletResponse 封装所有响应信息 servlet方法参数中
session HttpSession 封装所有会话信息 req.getSession
application ServletContext 所有信息 getServletContext/request.getServletContext
out PrintWriter 输出对象 response.getWriter
exception Exception 异常对象
page Object 当前页面对象
pageContext pageContext 获取其他信息
config ServletConfig 配置信息

pageContext :它共享的数据,只能在当前页面使用

request: 一次请求 中同一个对象,下次请求重新实例化一个request对象

session:只要Cookie中传递的Jsessionid不变,session不会重新实例化

  • 浏览器关闭,cookie会失效
  • 默认时间超时(默认时间内无任何交互)(在web.xml中进行配置),cookie会失效 设置默认时间: web.xml中配置 session-fonfig标签(session-timeout 分钟为单位)

apllication(ServletContext): 服务器启动后 数据一直保存直到服务器重启或关闭

转载地址:http://ojqez.baihongyu.com/

你可能感兴趣的文章
org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /
查看>>
org.hibernate.HibernateException: Unable to get the default Bean Validation factory
查看>>
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
查看>>
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
查看>>
org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded
查看>>
org.tinygroup.serviceprocessor-服务处理器
查看>>
org/eclipse/jetty/server/Connector : Unsupported major.minor version 52.0
查看>>
org/hibernate/validator/internal/engine
查看>>
SQL-36 创建一个actor_name表,将actor表中的所有first_name以及last_name导入改表。
查看>>
orm总结
查看>>
os.path.join、dirname、splitext、split、makedirs、getcwd、listdir、sep等的用法
查看>>
os.system 在 Python 中不起作用
查看>>
OSCACHE介绍
查看>>
SQL--合计函数(Aggregate functions):avg,count,first,last,max,min,sum
查看>>
OSChina 周四乱弹 ——程序员为啥要买苹果手机啊?
查看>>
OSError: no library called “cairo-2“ was foundno library called “cairo“ was foundno library called
查看>>
OSG学习:几何体的操作(二)——交互事件、Delaunay三角网绘制
查看>>
OSG学习:几何对象的绘制(三)——几何元素的存储和几何体的绘制方法
查看>>
OSG学习:几何对象的绘制(二)——简易房屋
查看>>
OSG学习:场景图形管理(一)——视图与相机
查看>>