jsp application對象介紹

來源:互聯網
上載者:User

在application對象的生命週期中,在當前伺服器上啟動並執行每一個JSP程式都可以任意存取和這個application對象綁定的參數(或者Java對象)的值。application對象的這些特性為我們在多個JSP程式中、多個使用者共用某些全域資訊(如當前的線上人數等)提供了方便

application 屬性範圍

在整個伺服器上儲存,所有使用者都可以使用,但重啟伺服器無法得到屬性

設定application 屬性範圍 application_scope_01.jsp

 代碼如下 複製代碼

<%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
<%@ page import="java.util.*"%>
<html>
<head>
<title>測試</title>
</head>
<body>
<%
 application.setAttribute("name","小明");
 application.setAttribute("birthday",new Date());
%>
<a href="application_scope_02.jsp">application連結跳轉</a>
</body>
</html>
跳轉後的頁面 application_scope_02.jsp

 

<%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
<%@ page import="java.util.*"%>
<html>
<head>
<title>測試</title>
</head>
<body>
<%
 String username=(String)application.getAttribute("name");
 Date birthday=(Date)application.getAttribute("birthday");
%>
<h1>姓名:<%=username%></h1>
<h2>出生:<%=birthday%></h2>
</body>
</html>

 application對象實現了使用者間資料的共用,可存放全域變數。它開始於伺服器的啟動,直到伺服器的關閉,在此期間,此對象將一直存在;這樣在使用者的前後串連或不同使用者之間的串連中,可以對此對象的同一屬性進行操作;在任何地方對此對象屬性的操作,都將影響到其他使用者對此的訪問。伺服器的啟動和關閉決定了application對象的生命。它是ServletContext類的執行個體

序號 方 法 說 明
1   Object getAttribute(String name) 返回給定名的屬性值
2   Enumeration getAttributeNames() 返回所有可用屬性名稱的枚舉
3   void setAttribute(String name,Object obj) 設定屬性的屬性值
4   void removeAttribute(String name) 刪除一屬性及其屬性值
5   String getServerInfo() 返回JSP(SERVLET)引擎名及版本號碼
6   String getRealPath(String path) 返回一虛擬路徑的真實路徑
7   ServletContext getContext(String uripath) 返回指定WebApplication的application對象
8   int getMajorVersion() 返回伺服器支援的Servlet API的最大版本號碼
9   int getMinorVersion() 返回伺服器支援的Servlet API的最大版本號碼
10   String getMimeType(String file) 返回指定檔案的MIME類型
11   URL getResource(String path) 返回指定資源(檔案及目錄)的URL路徑
12   InputStream getResourceAsStream(String path) 返回指定資源的輸入資料流
13   RequestDispatcher getRequestDispatcher(String uripath) 返回指定資源的RequestDispatcher對象
14   Servlet getServlet(String name) 返回指定名的Servlet
15   Enumeration getServlets() 返回所有Servlet的枚舉
16   Enumeration getServletNames() 返回所有Servlet名的枚舉
17   void log(String msg) 把指定訊息寫入Servlet的記錄檔
18   void log(Exception exception,String msg) 把指定異常的棧軌跡及錯誤訊息寫入Servlet的記錄檔
19   void log(String msg,Throwable throwable) 把棧軌跡及給出的Throwable異常的說明資訊 寫入Servlet的記錄檔

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.