博客
关于我
九个内置对象&四大作用域
阅读量: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/

你可能感兴趣的文章
NN&DL4.8 What does this have to do with the brain?
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>
No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
查看>>
No module named cv2
查看>>
No module named tensorboard.main在安装tensorboardX的时候遇到的问题
查看>>
No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
查看>>
No new migrations found. Your system is up-to-date.
查看>>
No qualifying bean of type XXX found for dependency XXX.
查看>>
No resource identifier found for attribute 'srcCompat' in package的解决办法
查看>>
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
查看>>
NO.23 ZenTaoPHP目录结构
查看>>
NoClassDefFoundError: org/springframework/boot/context/properties/ConfigurationBeanFactoryMetadata
查看>>
Node JS: < 一> 初识Node JS
查看>>
Node-RED中使用JSON数据建立web网站
查看>>
Node-RED中使用node-red-browser-utils节点实现选择Windows操作系统中的文件并实现图片预览
查看>>
Node-RED中实现HTML表单提交和获取提交的内容
查看>>
Node.js 实现类似于.php,.jsp的服务器页面技术,自动路由
查看>>
node.js 怎么新建一个站点端口
查看>>