码迷,mamicode.com
首页 > Web开发 > 详细

JSP内置对象

时间:2014-11-23 21:33:13      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   sp   strong   on   bs   tt   

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内置对象

标签:http   io   ar   os   sp   strong   on   bs   tt   

原文地址:http://www.cnblogs.com/duduSunny/p/4117307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!