productSearchRPP 8
pageContext.getServletContext().getInitParameter("key");
This is how you get context parameter value in JSP. In JSTL you can get it like this
${pageContext.servletContext}
Or
${applicationScope.attributeName}