jsp |
servlet |
|
对象名 |
类型 |
使用范围 |
request |
HttpServletRequest |
请求 浏览器--->服务器 |
response |
HttpServletResponse |
返回 服务器--->浏览器 |
config |
ServletConfig |
用来获取web.xml中的信息 |
application |
ServletContext |
整个项目中的全局信息 |
exception |
Thrawable |
捕获异常 try/catch throws |
page |
this |
当前对象,当前页面对象 |
out |
JspWriter---->PrintWriter |
当前页面输出流 |
pageContext |
PageContext |
当前页面的上下文,整个页面 |
Session |
HttpSession |
会话 浏览器和服务器通讯 |