1. 程式人生 > 遊戲攻略 >《怪物獵人崛起》斬斧上位開荒配裝推薦

《怪物獵人崛起》斬斧上位開荒配裝推薦

ServletContext官方叫servlet上下文。伺服器會為每一個工程(模組)建立一個物件,這個物件就是ServletContext物件。這個物件全域性唯一,而且工程(模組)內部的所有servlet都共享這個物件。所以叫全域性應用程式共享物件。
並不是一個servlet對應一個ServletContext,事實是一個web應用對應一個ServletContext,所以ServletContext的作用範圍是整個應用
一個web應用對應一個ServletContext例項,這個例項是應用部署啟動後,servlet容器為應用建立的。ServletContext例項包含了所有servlet共享的資源資訊。通過提供一組方法給servlet使用,用來和servlet容器通訊,比如獲取檔案的MIME型別、分發請求、記錄日誌等。

ServletContext是一個介面,它表示Servlet上下文物件。

ServletContext是一個域物件

  • 域物件意思是可以像Map一樣存取資料的物件,這裡的域指的是存取資料的操作範圍

ServletContext類的四個作用

  • 獲取web.xml中配置的上下文引數的context-param
  • 獲取當前的工作路徑,格式/工程路徑
  • 獲取工程部署後在伺服器硬碟上的絕對路徑
  • 像Map一樣存取資料
    但是ServletContext不能得到servlet標籤裡面的資訊

<context-param>在web.xml中的配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0"> <!--context-param是上下文引數,每個Servlet都可以訪問得到-->
<context-param> <param-name> username </param-name> <param-value> context </param-value> </context-param> <servlet> <!--servlet-name為別名--> <servlet-name>ContextServlet</servlet-name> <!--servlet-class為全類名--> <servlet-class>com.atguigu.Servlet.ContextServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>ContextServlet</servlet-name> <url-pattern>/contextServlet</url-pattern> </servlet-mapping> </web-app>

ContextServlet類

package com.atguigu.Servlet;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class ContextServlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        ServletContext context=getServletConfig().getServletContext();
        String username=context.getInitParameter("username");
        System.out.println("username:"+username);
        //獲取當前的工作路徑,格式為:/工程名
        System.out.println("當前工程路徑:"+context.getContextPath());
        //獲取工程部署後在伺服器硬碟上的絕對路徑
        /*
        /斜槓被伺服器解析為地址為http://ip:port/工程名,對映到IDEA程式碼的web目錄
         */
        System.out.println("工程部署的路徑:"+context.getRealPath("/"));
        System.out.println("css的路徑:"+context.getRealPath("/css"));
    }
}

web模組的路徑:
在這裡插入圖片描述
ServletContext存取資料方法:

  • 存資料方法:setAttribute();
  • 取資料方法:getAttributes()方法
  • 刪除資料方法():removeAttributes()
    例如
package com.atguigu.Servlet;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

public class ContextServlet1 extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        ServletContext context=getServletContext();
        context.setAttribute("key1","value1");
        System.out.println("Context1中獲取域資料key1的值是:"+context.getAttribute("key1"));

    }
}

在另一個Servlet中也能獲得ContextServlet1中設定的資料

ServletContext是在web工程部署啟動的時候建立,在web工程停止的時候銷燬。