0
我試圖設置一個參數,該參數未分配給特定的servlet,而是在整個Web應用程序中全局可用。我當前的代碼得到以下爲null
:全局Web應用程序參數
<context-param>
<param-name>example</param-name>
<param-value>This is an example parameter value</param-value>
</context-param>
和
getServletConfig().getInitParameter("example");