2012-12-26 64 views

回答

8
pageContext.getServletContext().getInitParameter("key"); 

得到productSearchRPP的價值這是你如何獲得JSP環境參數值。 在JSTL,你可以得到它像這樣

${pageContext.servletContext} 

或者

${applicationScope.attributeName} 
+0

我想使用JSTL得到它。 –

+0

@ user1929534,我編輯了答案 –

+0

第一行應該以'pageContext'開始(注意大寫'C')。我試着編輯答案,但stackoverflow說編輯必須至少有6個字符長。 – twm

1

試試這個:

application.getInitParameter("productSearchRPP") 
1
application.getServletContext().getInitParameter("productSearchRPP"); 

使用它來得到需要的結果

4

即使你可以在你的jsp中試試這個。

ServletContext context = pageContext.getServletContext(); 
com = context.getInitParameter("com"); 

和jstl你可以使用。

${initParam['theStringIWant']} 
6
${initParam['productSearchRPP']} 

或者,進去小腳本

<%= pageContext.getServletContext().getInitParameter("productSearchRPP") %>