jsp的四個做用域和9個內置對象
css
jsp內置對象【重點】:pageContext、request、session、application、response、out、page、exception、config
做用:servlet 和 jsp進行數據交互 ,四個做用域和 9 個內置對象中的 四個做用域對象
內置對象:不須要聲明,直接使用的對象,就是內置對象(隱含對象)
9個內置對象:做用域對象 實現 servlet和jsp的 數據的共享,在 servlet執行轉發或重定向的時候實現數據共享
四個做用域相關的內置對象:(重點的重點)
pageContext 做用範圍 是一個頁面,javax.servlet.jsp.PageContext 類的實例
request 做用範圍 是一次請求 ,能夠是多個頁面,HttpServletRequest類的實例
session 做用範圍 是一次會話,能夠是多個請求,HttpSession
application (servletContext對應的對象) 做用範圍 整個web應用 ,能夠是多個會話,ServletContext類的實例
兩個輸出相關的對象:
response 對應 servlet中 HttpServletResponse類的實例
out 功能相似於 PrintWriter
是 JspWriter 的實例
三個打醬油的對象:
page java中的this (jsp----->servlet 類 ----servlet類中的this )
exception 對應 Exception中java.lang.Throwable類的實例
config ServletConfig類的實例
做用域範圍詳解:
pageContext:做用範圍 是一個頁面 javax.servlet.jsp.PageContext 類的實例
test_scope.jsphtml
當用轉發跨頁面時:<jsp:forward page="ok.jsp"></jsp:forward>
ok.jsp
test_scope.jsp
效果圖:
request:做用範圍 是一次請求 ,能夠是多個頁面
/* request跨頁面 ,在一次請求內共享 數據 */
request.setAttribute("str", "今每天氣不錯");
=================================
/* 測試 request對象 取值 */
String str = (String)request.getAttribute("str");
代碼【test_scope.jsp、ok.jsp】
test_scope.jspjava
1 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 <% 3 String path = request.getContextPath(); 4 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 %> 6 7 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 8 <html> 9 <head> 10 <base href="<%=basePath%>"> 11 12 <title>My JSP 'test_scope.jsp' starting page</title> 13 14 <meta http-equiv="pragma" content="no-cache"> 15 <meta http-equiv="cache-control" content="no-cache"> 16 <meta http-equiv="expires" content="0"> 17 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 18 <meta http-equiv="description" content="This is my page"> 19 <!-- 20 <link rel="stylesheet" type="text/css" href="styles.css"> 21 --> 22 23 </head> 24 25 <body> 26 <!-- 27 pageContext:做用範圍 是一個頁面 javax.servlet.jsp.PageContext 類的實例 28 request:做用範圍 是一次請求 ,能夠是多個頁面 29 --> 30 <% 31 /* 測試pageContext對象 */ 32 // 存數據 33 pageContext.setAttribute("name", "迪麗熱巴"); 34 // 取數據 35 Object uname = pageContext.getAttribute("name"); 36 37 /* request跨頁面 ,在一次請求內共享 數據 */ 38 request.setAttribute("str", "今每天氣不錯"); 39 %> 40 test_scope.jsp 輸出結果: 41 <%=uname %> 42 <!-- 轉發 --> 43 <jsp:forward page="ok.jsp"></jsp:forward> 44 </body> 45 </html>
ok.jspweb
1 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 <% 3 String path = request.getContextPath(); 4 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 %> 6 7 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 8 <html> 9 <head> 10 <base href="<%=basePath%>"> 11 12 <title>My JSP 'index.jsp' starting page</title> 13 <meta http-equiv="pragma" content="no-cache"> 14 <meta http-equiv="cache-control" content="no-cache"> 15 <meta http-equiv="expires" content="0"> 16 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 17 <meta http-equiv="description" content="This is my page"> 18 <!-- 19 <link rel="stylesheet" type="text/css" href="styles.css"> 20 --> 21 </head> 22 23 <body> 24 <% 25 /* 測試 pageContext對象 */ 26 Object uname = pageContext.getAttribute("name"); 27 28 /* 測試 request對象 取值 */ 29 String str = (String)request.getAttribute("str"); 30 %> 31 一次請求 ,跨頁面取值<hr> 32 <%=uname %><br> 33 <%=str %> 34 </body> 35 </html>