12
  <context-param>
        <param-name>productSearchRPP</param-name>
        <param-value>8</param-value>
    </context-param>

我想在 products.jsp 页面中获取 productSearchRPP 的值

4

5 回答 5

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

这就是您在 JSP 中获取上下文参数值的方式。在 JSTL 中你可以像这样得到它

${pageContext.servletContext}

或者

${applicationScope.attributeName}
于 2012-12-26T10:27:44.940 回答
8
${initParam['productSearchRPP']}

或者,进入 scriptlet

<%= pageContext.getServletContext().getInitParameter("productSearchRPP") %>
于 2015-06-12T10:43:07.700 回答
7

即使你可以在你的jsp中尝试这个。

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

和 jstl 你可以使用。

${initParam['theStringIWant']}
于 2012-12-26T10:31:19.653 回答
1

尝试这个:

application.getInitParameter("productSearchRPP")
于 2012-12-26T10:29:20.710 回答
1
 application.getServletContext().getInitParameter("productSearchRPP");

使用它来获得所需的结果

于 2012-12-26T10:30:11.740 回答