首页 > 代码库 > JSP内置对象

JSP内置对象

jsp隐含对象

request:请求对象(如请求标头、方法、参数)  scope:Request

getParameter()//

getParameterNames()//

getParameterValues()//

response:相应对象  scpoe:Page

pageContext:页面上下文对象(当前页面运行的一些属性)  scope:Page

findAttribute()//

getAttribute()//

getAttributeScope()//

session:回话对象(服务器与客户端所建立的回话,用于不同的JSP页面中保留客户的信息,如:在线购物、客户轨迹跟踪)  scope:Session

getId()、getValue()、getValueNames()、putValue()

HTTP:无状态协议

Web server:对每一个客户端请求都没有历史记忆

session:保存客户端状态信息

由Web sever:存于客户端

客户端的每次访问都要把session记录传递给Web server

Web server读取客户端提交的session来获取客户端的状态信息

application:应用程序对象  scope:Application

out:输出对象  scope:Page

clear()、clearBuffer()、flush()、print()、println()

config:配置对象  scope:Page

page:页面对象  scope:Page

exception:异常对象  scope:Page

getMessage()、toString()

 

JSP内置对象