productSearchRPP
8
application.getServletContext().getInitParameter("productSearchRPP");
use this to get required result
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}
Try this:
application.getInitParameter("productSearchRPP")
Even you can try this in your jsp.
ServletContext context = pageContext.getServletContext();
com = context.getInitParameter("com");
and with jstl you can use.
${initParam['theStringIWant']}
${initParam['productSearchRPP']}
Or, to get inside scriptlet
<%= pageContext.getServletContext().getInitParameter("productSearchRPP") %>