5.context-param 元素用來設定web站台的環境參數(context),它包含兩個子元素:param-name和param-value.
<param-name>參數名稱</param-name>設定Context名稱
<param-value>值</param-value>設定Context名稱的值
范例:
<context-param>
<param-name>param_name</param-name>
<param-value>param_value</param-value>
</context-param>
此所設定的參數,在JSP網頁中可以使用下列方法來取得:${initParam.param_name}
若在Servlet可以使用下列方法來獲得:String param_name=getServletContext().getInitParamter("param_name");
<!-- context-param 元素用來設定web站台的環境參數(context),它包含兩個子元素:param-name和param-value.,如spring的典型配置 -->
<context-param>
<!-- 設定Context名稱 -->
<param-name>contextConfigLocation</param-name>
<!-- 設定Context名稱的值 -->
<param-value>/WEB-INF/spring-config.xml</param-value>
</context-param>
<!-- 備注:此所設定的參數,在JSP網頁中可以使用下列方法來取得:${initParam.param_name}
若在Servlet可以使用下列方法來獲得:String param_name=getServletContext().getInitParamter("param_name"); -->