JSP的九大内置对象
1、JSP的九大内置对象,其实是翻译后的.java文件中 _jspService() 方法的局部变量
2、具体的九大内置对象
- request
- response
- session
- application:Servletcontext
- out: JspWriter,类似于response.getwriter(),输出jsp中页面的内容
- pageContext
- config:ServletConfig
- page:this,当前Servlet实例
- exception:Throwable
pageContext : page上下文
1、代表当前jsp的运行环境
2、当请求到达当前jsp时,创建一个pageContext对象,当请求离开当前jsp时,销毁该对象
3、pageContext是JavaEE的四大作用域(Scope)之一,是最小的作用域,代表当前页面
- pageContext.setAttribute();
- pageContext.getAttribute();
- pageContext.removeAttribute();
以下是JavaEE的作用域的是:答案(124)
1、request 2、session 3、page 4、pageContext
exception:
可以开发一个错误提示页面,当项目出现500时,服务器自动使用该错误提示页面为用户生成响应内容
1.好处:可以有效提高用户体验
2.配置方式
<error-page>
<error-code>500</error-code>
<location>/500page.jsp</location>
</error-page>
3.如果在错误提示页面中,希望获得上一个页面的异常信息,可以在页面中声明 isErrorPage="true"
4.服务器为会该JSP自动添加一个内置对象,exception,封装了上一个页面的异常信息