JSP中的隐含对象
2021-06-07 16:02
标签:exce 数据 创建 ble iter tps ext throw nbsp 什么是JSP中隐含对象:容器自动创建,在JSP文件中可以直接使用的对象。 作用:JSP预先创建的这些对象可以简化对HTTP的请求,响应信息的访问。 JSP中的隐含对象: 输入输出对象:request、response、out 作用域通信对象:session、application、pageContext Servlet对象:page、config 异常对象:Exception 隐含对象 类型 说明 request HttpServletRequest 请求信息 response HttpServletResponse 响应信息 out JSPWriter 输出的数据流 session HttpSession 会话 application ServletContext 全局的上下文对象 page Objest JSP页面本身 config ServletConfig Servlet配置对象 exception Throwable 捕获网页异常 JSP中的隐含对象 标签:exce 数据 创建 ble iter tps ext throw nbsp 原文地址:http://www.cnblogs.com/sunfenqing/p/7324825.html