///////////////////////////jsp中四种范围中的值的获取////////////////////////////////
在pageContext,request,session,application四种范围中设置setAttribute()时;
1.pageContext:pageContext.setAttribute(),只能在其本页面中取得值,pageContext.getAttribute()
2.request:request.setAttribute(),在跳转页面时,只能使用内部跳,在其他页面才可以获取到值
request.getRequestDispatcher("URL").forward(request, response);重定向
response.sendRedirect(URL)不能在其他页面得到值,这时值失效
3.session:session.setAttribute(),不管使用内部跳页面还是重定向都能在其他页面得到值,只有关闭窗口
,该会话中设置的值才会失效。
4.application:application.setAttribute(),不管使用内部跳页面还是重定向都能在其他页面得到值,只有
关闭服务器时,设置的值才会失效。