web.xml中在Servlet中擷取context-param和init-param內的參數

來源:互聯網
上載者:User

標籤:

引自:http://blog.csdn.net/yakson/article/details/9203231

 

web.xml裡面可以定義兩種參數:
1.application範圍內的參數,存放在servletContext中,在web.xml中配置如下: 

 
  1. <context-param>  
  2.            <param-name>context/param</param-name>  
  3.            <param-value>avalible during application</param-value>  
  4.   </context-param>  

  

2.servlet範圍內的參數,只能在servlet的init()方法中取得,在web.xml中配置如下:

 
  1. <servlet>  
  2.     <servlet-name>MainServlet</servlet-name>  
  3.     <servlet-class>com.wes.controller.MainServlet</servlet-class>  
  4.     <init-param>  
  5.        <param-name>param1</param-name>  
  6.        <param-value>avalible in servlet init()</param-value>  
  7.     </init-param>  
  8.     <load-on-startup>0</load-on-startup>  
  9. </servlet>  

 

在servlet中可以通過代碼分別取用: 

 
  1. package com.qisentech.controller;  
  2. import javax.servlet.ServletException;  
  3. import javax.servlet.http.HttpServlet;  
  4. public class MainServlet extends HttpServlet {  
  5.     public MainServlet() {  
  6.         super();  
  7.       }  
  8.     public void init() throws ServletException {  
  9.           System.out.println(this.getInitParameter("param1"));  
  10.           System.out.println(getServletContext().getInitParameter("context/param"));  
  11.        }  
  12. }   

第一種參數在servlet裡面可以通過getServletContext().getInitParameter("context/param")得到
第二種參數只能在servlet的init()方法中通過this.getInitParameter("param1")取

web.xml中在Servlet中擷取context-param和init-param內的參數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.