小编典典

如何在JSP中获取上下文参数值?

jsp

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

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


阅读 377

收藏
2020-06-08

共1个答案

小编典典

即使您可以在jsp中尝试此操作。

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

并可以使用jstl。

${initParam['theStringIWant']}
2020-06-08