四大域对象的作用范围

四大域对象作用范围:

pageContext  <  httpServletRequest  <  httpSession   < servletContext

pageContext

作用范围:当前jsp页面;

作用:获取九大内置对象;

常用方法:getAttribute()、setAttribute()、removeAttribute()、findAttribute()

httpServletRequest

作用范围:一次请求范围内,转发有效重定向失效;

作用:将servlet中的数据通过request对象带到jsp页面;

 

httpSession

作用范围:存活时间内(默认30分钟),一次会话内有效,转发和重定向都有效;

servletContext

作用范围:整个web应用;

在jsp的九大内置对象中,servletContext对应application;

猜你喜欢

转载自www.cnblogs.com/lee-yangyaozi/p/10897782.html