<context-param>
<param-name>productSearchRPP</param-name>
<param-value>8</param-value>
</context-param>
products.jspページでproductSearchRPPの値を取得したい
pageContext.getServletContext().getInitParameter("key");
これは、JSPでコンテキストパラメータ値を取得する方法です。JSTLでは、このように取得できます
${pageContext.servletContext}
または
${applicationScope.attributeName}
${initParam['productSearchRPP']}
または、スクリプトレットに入る
<%= pageContext.getServletContext().getInitParameter("productSearchRPP") %>
あなたもあなたのjspでこれを試すことができます。
ServletContext context = pageContext.getServletContext();
com = context.getInitParameter("com");
jstlを使用すると使用できます。
${initParam['theStringIWant']}
これを試して:
application.getInitParameter("productSearchRPP")
application.getServletContext().getInitParameter("productSearchRPP");
これを使用して必要な結果を取得します