When I enter Parameters in the "Advanced" tab of a template, they do not recognize in the JSP renderer.
Parameters work fine for display views. When working with Display View renderers, I am able to recover parameters using either of the following methods (JSTL and standard JSP):
${requestScope.parameterName}
<%= (String)request.getAttribute("parameterName") %>
However, neither of these methods work when trying to recover parameters defined for a template. Both return null.
Has anyone been able to successfully use template parameters?