溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

詳解Java中ServletContext對象

發(fā)布時間:2020-07-21 16:39:14 來源:億速云 閱讀:273 作者:小豬 欄目:編程語言

小編這次要給大家分享的是詳解Java中ServletContext對象,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

ServletContext對象:

ServletContext類似字節(jié)碼文件對象,在web創(chuàng)建的時候就自動生成了,并且是唯一的,跟隨著項目和服務(wù)器共存亡了。通過這個對象,我們可以向里面存數(shù)據(jù)(鍵值對),也可以通過別的Servlet來獲取這個數(shù)據(jù);也可以根據(jù)相對(服務(wù)器)路徑繼來獲取絕對路徑。

ServletContext代表是一個web應(yīng)用的環(huán)境(上下文)對象,ServletContext對象內(nèi)部封裝是該web應(yīng)用的信息,ServletContext對象一個web應(yīng)用只有一個。 一個web應(yīng)用有幾個servlet對象?----多個

ServletContext對象的生命周期?

創(chuàng)建:該web應(yīng)用被加載(服務(wù)器啟動或發(fā)布web應(yīng)用(前提,服務(wù)器啟動狀態(tài)))

銷毀:web應(yīng)用被卸載(服務(wù)器關(guān)閉,移除該web應(yīng)用)

獲得ServletContext對象:

第一種:Servlet的init方法中獲得ServletConfig 初始化方法

ServletContext servletContext = config.getServletContext ();

第二種:

ServletContext servletContext = config.getServletContext ();

ServletContext的作用:

獲得web應(yīng)用中任何資源的絕對路徑(重要 重要 重要)

String path = context.getRealPath(相對于該web應(yīng)用的相對地址);

public class Servlet01 extends HttpServlet {
  public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    //獲取ServletContext對象
    ServletContext context =getServletContext();
    //獲取相對于服務(wù)器的相對路徑獲取絕對路徑
    String patha=context.getRealPath("WEB-INF/classes/a.txt");
    String pathb=context.getRealPath("b.txt");
    String pathc=context.getRealPath("WEB-INF/c.txt");
    //d.txt創(chuàng)建在WEB04文件下,不會在服務(wù)器上找到的。以后靜態(tài)資源創(chuàng)建在WebContent下,項目文件、配置文件在src下
    System.out.println(patha);
    System.out.println(pathb);
    System.out.println(pathc);
  }
  public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doGet(request, response);
  }

ServletContext是一個域?qū)ο螅ù鎯?shù)據(jù)的區(qū)域):

存儲數(shù)據(jù)的區(qū)域就是域?qū)ο螅?/p>

ServletContext域?qū)ο蟮淖饔梅秶赫麄€web應(yīng)用(所有的web資源都可以隨意向 servletcontext域中存取數(shù)據(jù),數(shù)據(jù)可以共享)

域?qū)ο蟮耐ㄓ玫姆椒ǎ?br/>

setAtrribute(String name,Object obj); k是字符串 value是obj類型

getAttribute(String name); 強(qiáng)轉(zhuǎn)

removeAttribute(String name);

public class Serlvlet03 extends HttpServlet {

  public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    //獲取ServletContext對象
    ServletContext context=getServletContext();
    //獲取ServletContext域中的值
    String name=(String)context.getAttribute("name");
    response.getWriter().write(name);
  }

  public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doGet(request, response);
  }
}

看完這篇關(guān)于詳解Java中ServletContext對象的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI