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()

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。