1 Request HttpServletRequest
2 Response HttpServletResponse
3 Session HttpSession(有开关:page指令的session属性的取值)
4 Application servletContext
5 Config servletConfig
6 Page this(当前servlet对象)
7 Exception java.lang.Throwable(有开关的:page指令的isErrorPage属性改为true)
8 Out jspWriter
9 pageContext javax.servlet.jsp.PageContext
四大域对象:
1.ServletContext(application):作用范围整个app(当前工程)
2.session:作用范围:一次会话,浏览器打开到关闭为一次会话
3.request:作用范围:一次请求,客户端与服务器端一次交互
4.pagecontext:作用范围:当前页面
//在够用的前提下,作用域尽可能小