Currently I use:
<%
final String message = (String) request.getAttribute ("Error_Message");
%>
and then
<%= message %>
However I wonder if the same can be done with EL or JSTL instead of using a scriptlet.
Currently I use:
<%
final String message = (String) request.getAttribute ("Error_Message");
%>
and then
<%= message %>
However I wonder if the same can be done with EL or JSTL instead of using a scriptlet.
EL expression:
There are several implicit objects in JSP EL. See Expression Language under the "Implicit Objects" heading.
Just noting this here in case anyone else has a similar issue.
If you're directing a request directly to a JSP, using Apache Tomcat web.xml configuration, then
${requestScope.attr}
doesn't seem to work, instead${param.attr}
contains the request attributeattr
.Using JSTL:
Here var sets the variable name and request.getAttribute is equal to requestScope. But it's not essential. ${Error_Message} will give you the same outcome. It'll search every scope. If you want to do some operation with content you take from Error_Message you have to do it using message. like below one.