91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

ServletContext類如何在servlet中使用

發布時間:2020-11-27 16:37:52 來源:億速云 閱讀:183 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關ServletContext類如何在servlet中使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

在對Servlet配置的web.xml文件中,經常會使用一些初始化的參數來配置Servlet,總的功能來說就是不在Servlet程序中將某個變量寫死,而是通過外界(如web.xml文件)進行傳遞,同時便于修改。這個是使用<servlet>標簽下的<init-param>標簽,使用<init-param>標簽的<param-name>和<param-value>來封裝一個鍵值對,可以使用多個<init-param>標簽進行多個初始化參數的設定,我們可以看看Tomcat的web.xml中的默認Servlet:

ServletContext類如何在servlet中使用

可以看到在這個默認Servlet中有兩個初始化參數,分別是“debug=0”和“listings=false”。

當Servlet在web.xml文件中配置了<init-param>標簽后,web容器會在創建Servlet實例對象時,自動將這些初始化參數封裝到ServletConfig對象中,并在調用Servlet的初始化init方法時,將ServletConfig對象傳遞給Servlet。

我們從Servlet接口的初始化方法:init(ServletConfig config),可以知道,當服務器創建Servlet對象就將ServletConfig對象傳遞,而在ServletConfig對象中包含著<init-param>標簽所配置的參數和值。

剛開始學Servlet時,就已經談到過Servlet接口的非生命周期方法就有一個方法是getServletConfig()方法,返回ServletConfig對象。所以當我們在開發的Servlet的web.xml文件中配置一些信息:

ServletContext類如何在servlet中使用

而在Servlet中的程序獲取這個配置的參數:

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

    ServletConfig config = this.getServletConfig();
    String initValue = config.getInitParameter("love");
    System.out.println(initValue);
  }

重新部署該web應用,然后在瀏覽器來訪問這個Servlet,將會看到在MyEclipse的控制臺上打印出:

ServletContext類如何在servlet中使用

在ServletConfig類中,getInitParameter(String name)方法是傳入特定參數名來獲取對應參數的值,getInitParameterNames()方法則是將所有的參數名裝進一個Enumeration對象返回,當我們有多個參數鍵值對時:

ServletContext類如何在servlet中使用

在Servlet中進行遍歷和輸出:

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

    ServletConfig config = this.getServletConfig();
    Enumeration initParams = config.getInitParameterNames();
    while(initParams.hasMoreElements()) {
      String paramName = (String)initParams.nextElement();
      String paramValue = config.getInitParameter(paramName);
      System.out.println(paramName+" = "+paramValue );
    }
  }

ServletContext類如何在servlet中使用

最后,ServletConfig對象的作用通常用于獲得編碼表類型,獲得數據庫連接信息,獲得配置文件(如Struts的web.xml文件中)等等。

說完了ServletConfig對象,當我們去看這個對象的方法時會發現這個方法中還有一個方法getServletContext()是返回一個ServletContext對象,這是Servlet中一個非常重要的類。當然ServletContext對象還可以從父類的方法中直接獲取。

Web容器在啟動時會為每個web應用創建一個ServletContext對象,而這個ServletContext對象就代表當前這個web應用。因為一個ServletContext對象代表一個web應用,所以該web應用中所有的Servlet和其他資源都共享一個ServletContext對象,這時,我們就可以通過ServletContext對象進行Servlet對象之間的通訊。而ServletContext對象也稱之為Context域對象。 

我們先來看看ServletContext對象的獲取的兩種方式:

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

    //兩種獲取ServletContext對象的方法:
    ServletContext context1 = this.getServletConfig().getServletContext();
    ServletContext context2 = this.getServletContext();
    
    //System.out.println(context1 == context2);  //ture
  }

可以通過先獲取ServletConfig對象來獲取,或者直接通過父類的方法來獲取,這兩種方式獲取到的是同一對象(相同地址)。

既然說ServletContext代表這個web應用,我們可以用它來進行Servlet直接的通訊,那么我們就創建一個工程來進行兩個Servlet之間的數據傳輸。在一個【myservlet】web工程下創建兩個Servlet:ServletDemo1和ServletDemo2,

ServletDemo1在ServletContext中設置參數鍵值對,代碼為:

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

    ServletContext context = this.getServletContext();
    context.setAttribute("lover", "LRR");
  }

ServletDemo2從ServletContext中獲取鍵值對,代碼為:

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

    ServletContext context = this.getServletContext();  
    System.out.println(context.getAttribute("lover"));
  }

在瀏覽器先訪問ServletDemo1后(先執行ServletDemo1才能使ServletContext設置參數),再訪問ServletDemo2后,MyEclipse的控制臺就輸出了ServletContext中設置的參數,這就達到了從一個Servlet傳遞數據給另一個Servlet。當然這只是ServletContext的一個小小應用。

在ServletContext類中還有getInitParameter(String name)方法或者getInitParameterNames()方法,這兩個方法獲取的是web應用所配置的參數(畢竟ServletContext代表web應用),就像ServletConfig中類似的方法獲取的是某個Servlet中的<init-param>標簽配置的參數。

而對于配置web應用的參數是在web.xml文件中使用<context-param>標簽,正如在該文件中為Servlet配置參數而使用<init-param>標簽一樣。這種配置<context-param>標簽的好處在于屬于全局性的配置,而每個Servlet的配置參數僅局限于在Servlet的范圍內,舉個例子,對于整個web應用配置數據庫連接,這樣在web應用中的每個Servlet都可以使用,而無需再在每個Servlet中都單獨設置一次,提高了效率。

例:在【myservlet】web工程下建立了名為ServletDemo3的Servlet,并在該web工程下的web.xml文件中添加<context-param>標簽作為該web應用的配置參數:

ServletContext類如何在servlet中使用

在ServletDemo3中的代碼如下:

public void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    
    ServletContext context = this.getServletContext();
    String username = context.getInitParameter("username");
    String password = context.getInitParameter("password");
    
    System.out.println(username +":"+ password);
}

在瀏覽器中訪問該Servlet,如果MyEclipse的控制臺能打印該信息,說明每個Servlet可以通過ServletContext對象來獲取web應用的配置信息,也從側面說明了ServletContext代表了這個web應用:

ServletContext類如何在servlet中使用

ServletContext類中的getMimeType(String  file)方法用于返回該文件的MIME類型:

public void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException {
    
    String filename = "1.html";
    ServletContext context = this.getServletContext();
    System.out.println(context.getMimeType(filename));  
  }

輸出:text/html。

ServletContext中的轉發方法(重要) 

在ServletContext對象中還有這么兩個方法:getNameDispatcher(String name)(不常用)和getRequestDispatcher(String path),返回的是RequestDispatcher對象。轉發有什么作用呢,舉個例子,比如一個Servlet中的數據交個另一個Servlet來處理,或者Servlet將某個實時數據交給JSP來顯示,雖然我們在瀏覽器中訪問的是最開始的Servlet,但是進行轉發后看到的其他web資源,而瀏覽器的地址欄不會改變。

注:在請求對象request對象中也有這么一個getRequestDispatcher(String path)方法,功能與ServletContext對象的這個方法一樣,也可以實現轉發,因此用哪個對象都行,沒有區別。

例:在【myservlet】web工程下創建一個名為ServletDemo1的Servlet和一個show.jsp,

在ServletDemo1中將數據轉發給show.jsp,代碼為:

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

  String data = "Ding love LRR";
  this.getServletContext().setAttribute("data", data); //將數據存至web應用的配置中
  ServletContext context = this.getServletContext();    
  RequestDispatcher dispathcer = context.getRequestDispatcher("/show.jsp"); //通過要轉發的目的地來獲取轉發對象
  dispathcer.forward(request, response);   //通過forward方法將請求對象和響應對象轉發給別人處理
  }

而在show.jsp中接收這個數據,并封裝在HTML中:

<font size="100px" color="red">
    ${data }
</font>

接著我們去瀏覽器里訪問ServletDemo1,就會看到:

ServletContext類如何在servlet中使用

雖然我們請求的ServletDemo1資源,但是由于在ServletDemo1中將請求進行了轉發,所以其實服務器返回的是show.jsp的資源,但是我們瀏覽器地址依然會是ServletDemo1,這也是轉發和重定向的區別之一。

關于ServletContext類如何在servlet中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

无锡市| 娄底市| 盐池县| 嘉祥县| 天祝| 罗源县| 大余县| 嘉禾县| 商丘市| 保德县| 西林县| 霸州市| 得荣县| 瓦房店市| 灵山县| 科技| 诏安县| 天柱县| 吴桥县| 庄河市| 临颍县| 简阳市| 札达县| 玛曲县| 山西省| 政和县| 调兵山市| 瓦房店市| 五华县| 宝清县| 武宣县| 宜昌市| 葫芦岛市| 高邑县| 扶沟县| 东乌珠穆沁旗| 玛沁县| 涞水县| 黄大仙区| 达孜县| 伊通|