您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“JavaWeb中ServletContext的介紹和應(yīng)用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“JavaWeb中ServletContext的介紹和應(yīng)用”吧!
1、獲取web 程序啟動時初始化參數(shù)
2、實現(xiàn)多個Servlet 對象共享數(shù)據(jù)
測試:
3、讀取web應(yīng)用下的資源
4、請求轉(zhuǎn)發(fā)
總結(jié)
當(dāng)Servlet 容器啟動的時候 會為每個web應(yīng)用創(chuàng)建一個ServletContext 對象代表當(dāng)前的web應(yīng)用。
在web.xml 文件中不止可以配置Servlet的初始化信息 還可以給整個web應(yīng)用配置初始化信息。
web.xml 設(shè)置需要初始化的參數(shù)
<!--1、獲取web應(yīng)用程序初始化參數(shù)--> <context-param> <param-name>name</param-name> <param-value>crush</param-value> </context-param> <context-param> <param-name>school</param-name> <param-value>hngy</param-value> </context-param>
寫一個Servlet繼承HttpServlet
/** * @Author: crush * @Date: 2021-05-09 16:32 * version 1.0 */ @WebServlet("/servlet") public class ServletContextTest extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //設(shè)置響應(yīng)頭 resp.setContentType("text/html;charset=utf-8"); PrintWriter writer = resp.getWriter(); ServletContext servletContext = this.getServletContext(); // 根據(jù)名稱 獲取單個初始化參數(shù) String parameter = servletContext.getInitParameter("name"); writer.print(parameter); writer.print("<br><hr>"); // 獲取全部初始化參數(shù) Enumeration<String> initParameterNames = servletContext.getInitParameterNames(); while (initParameterNames.hasMoreElements()){ String name = initParameterNames.nextElement(); String value = servletContext.getInitParameter(name); writer.print(name+":"+value); writer.print("<hr>"); } } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
@WebServlet("/servlet6") 作用等于
<servlet> <servlet-name>/servlet1</servlet-name> <servlet-class>com.crush.servlet.ServletContextTest</servlet-class> </servlet> <servlet-mapping> <servlet-name>/servlet1</servlet-name> <url-pattern>/servlet1</url-pattern> </servlet-mapping>
一個web 應(yīng)用中所有Servlet都共享ServletContext對象。在一定時候,ServletContext 也可以拿來傳遞信息
或者全局都需要的對象或者數(shù)據(jù)可以放進ServletContext中。
ServletContext接口的方法:這里講解增加、獲取、刪除、設(shè)置ServletContext 域?qū)傩运膫€方法。
方法 | 描述 |
---|---|
Enumeration getAttributeNames(); | 返回一個Enumeration其中包含該ServletContext中所有的屬性名稱 |
Object getAttribute(String name); | 返回具有給定名稱的servlet容器屬性; |
void removeAttribute(String name); | 從此ServletContext中刪除具有給定名稱的屬性。 |
setAttribute(String name,Object obj) | 在此ServletContext中將對象綁定到給定的屬性名稱。 如果指定的名稱已經(jīng)用于屬性,則此方法將使用新的屬性替換該屬性。 如果在ServletContext上配置了偵聽器,則容器會相應(yīng)地通知它們。 |
設(shè)置值: ServletContextTest1
/** * @Author: crush * @Date: 2021-05-09 16:59 * version 1.0 */ @WebServlet("/servlet1") public class ServletContextTest1 extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // 獲取ServletContext對象 ServletContext servletContext = this.getServletContext(); //設(shè)置值 ServletContext 域?qū)傩?nbsp;name 域?qū)傩悦?nbsp;obj是值 // 往ServletContext 中放進 username=crush 這個鍵值對 servletContext.setAttribute("username","crush"); // 在控制臺給出提示 System.out.println("值已經(jīng)設(shè)置完成"); // 重定向 // resp.sendRedirect("/servlet2"); // 轉(zhuǎn)發(fā) req.getRequestDispatcher("servlet2").forward(req, resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
取出值 :ServletContextTest2
/** * @Author: crush * @Date: 2021-05-09 16:59 * version 1.0 */ @WebServlet("/servlet2") public class ServletContextTest2 extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // 獲取ServletContext對象 ServletContext servletContext = this.getServletContext(); // 通過之前的設(shè)置的名字 取出username 的值 String username =(String) servletContext.getAttribute("username"); PrintWriter writer = resp.getWriter(); writer.print(username); //返回一個Enumeration其中包含該ServletContext中可用的屬性名稱 // Enumeration<String> attributeNames = servletContext.getAttributeNames(); //從此ServletContext中刪除具有給定名稱的屬性。 // servletContext.removeAttribute(""); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
先訪問 /servlet1 存值進去
再訪問 /servlet2 取值出來
使用ServletContext 可以讀取web應(yīng)用下的資源
常用方法
方法 | 描述 |
---|---|
String getRealPath(String path); | 獲取與給定虛擬路徑相對應(yīng)的真實路徑。 |
InputStream getResourceAsStream(String path); | 返回位于指定路徑處的資源作為InputStream對象。 |
URL getResource(String path) | 返回映射到給定路徑的資源的URL。 |
mysql.properties
user=root password=123456 url=jdbc:mysql://localhost:3306/mysql drive=com
讀取資源文件
/** * 讀取資源內(nèi)容 * @Author: crush * @Date: 2021-05-09 16:59 * version 1.0 */ @WebServlet("/servlet3") public class ServletContextTest3 extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/html;charset=utf-8"); ServletContext servletContext = this.getServletContext(); // 獲取相對路徑中的輸入流對象 是要獲取web應(yīng)用程序的路徑 InputStream inputStream = servletContext.getResourceAsStream("\\WEB-INF\\classes\\mysql.properties"); // 資源類對象 Properties properties = new Properties(); // load 從輸入字節(jié)流中讀取屬性列表(鍵和元素對) properties.load(inputStream); PrintWriter writer = resp.getWriter(); writer.print("user"+properties.getProperty("user")+"<br>"); writer.print("password"+properties.getProperty("password")+"<br>"); writer.print("url"+properties.getProperty("url")+"<br>"); writer.print("drive"+properties.getProperty("drive")+"<br>"); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
對于mysql. properties 為什么是從WEB-INF/classes/ 目錄下取的解釋
resources和java文件夾下的 在web程序下的路徑都是classes的路徑下的 到之后我們會學(xué)到classpath的 一個路徑
會更了解一些。
第二種方式
直接將mysql.properties文件放在WEB-INF/目錄下
這個時候取的路徑就產(chǎn)生了變化了,可以直接那么取到
這個時候我們發(fā)現(xiàn) 如果文件是放在WEB-INF 下面 的話 編譯完后 是直接就在WEB-INF 下面 而不是在classes目錄下的。這個內(nèi)容是maven 里的內(nèi)容,好奇可以去查一查。
ServletContextTest5 轉(zhuǎn)發(fā)到 ServletContextTest 去
/** * 請求轉(zhuǎn)發(fā) * @Author: crush * @Date: 2021-05-09 16:59 * version 1.0 */ @WebServlet("/servlet5") public class ServletContextTest5 extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/html;charset=utf-8"); ServletContext servletContext = this.getServletContext(); // RequestDispatcher對象可用于將請求轉(zhuǎn)發(fā)到資源或?qū)①Y源包括在響應(yīng)中。 資源可以是動態(tài)的也可以是靜態(tài)的。 //路徑名必須以/開頭,并被解釋為相對于當(dāng)前上下文根。 使用getContext獲取外部上下文中資源的RequestDispatcher servletContext.getRequestDispatcher("/servlet").forward(req,resp); //forward:將請求從servlet轉(zhuǎn)發(fā)到服務(wù)器上的另一個資源(servlet,JSP文件或HTML文件) } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
亂碼解決
/** * 亂碼問題 * @Author: crush * @Date: 2021-05-09 16:59 * version 1.0 */ @WebServlet("/servlet6") public class ServletContextTest6 extends HttpServlet { @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // 解決亂碼 只是解決單獨的響應(yīng)亂碼 如果有請求 還要設(shè)置請求的編碼 req.setCharacterEncoding("utf-8"); resp.setContentType("text/html;charset=utf-8"); PrintWriter writer = resp.getWriter(); writer.print("你好啊,JavaWeb"); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
到此,相信大家對“JavaWeb中ServletContext的介紹和應(yīng)用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。