vote up 3 vote down star

Is there a pure-Java equivalent to <jsp:forward page="..." /> that I can use within a <% ... %> block?

For example, I currently have a JSP page something like this:

<%
    String errorMessage = SomeClass.getInstance().doSomething();
    if (errorMessage != null) {
        session.setAttribute("error", errorMessage);
%>
<jsp:forward page="error.jsp" />
<%
    } else {
        String url = response.encodeRedirectURL("index.jsp");
        response.sendRedirect(url);
    }
%>

Having to break the <% ... %> block to use the jsp:forward is ugly and makes it harder to read due to indentation, among other things.

So, can I do the forward in the Java code without use the JSP tag?

Something like this would be ideal:

<%
    String errorMessage = SomeClass.getInstance().doSomething();
    if (errorMessage != null) {
        session.setAttribute("error", errorMessage);
        someObject.forward("error.jsp");
    } else {
        String url = response.encodeRedirectURL("index.jsp");
        response.sendRedirect(url);
    }
%>
flag

It's the breaking up of code that makes scriptlets unmaintainable over time. That's why the push was made to use tag libraries and JSTL in the first place. It's easier to see it all as akin to HTML than <% for // %> some text <% do something %> other text <% end for loop %> more text. – MetroidFan2002 Oct 29 '08 at 6:29

3 Answers

vote up 11 vote down check

The someObject you are looking for is pageContext.

This object is implicitly defined in JSP, so you can use it like this:

pageContext.forward("<some relative jsp>");
link|flag
Good call! That's cleaner than getting the dispatcher explicitly. – sylvarking Oct 28 '08 at 23:38
vote up 3 vote down

You really should try and avoid scriplets if you can, and in your case, a lot of what you are doing can be replaced with JSTL code. The following replacement for your example is much cleaner, IMO:

<%
  // Consider moving to a servlet or controller/action class
  String errorMessage = SomeClass.getInstance().doSomething();
  pageContext.setAttribute("errorMessage", errorMessage);
%>
<c:choose>
  <c:when test="${not empty errorMessage}">
    <c:set var="error" scope="session" value="${errorMessage}" />
    <jsp:forward page="error.jsp" />
  </c:when>
  <c:otherwise>
    <c:redirect url="index.jsp" />
  </c:otherwise>
</c:choose>

Ideally, you'd modify error.jsp so that the error message doesn't even need to be set in the session, but I didn't want to change your design too much.

link|flag
Can you please explain in your answer why scriptlets should be avoided in preference to JSTL? – Chris Carruthers Oct 29 '08 at 9:23
It's never been clear to me what the advantage of JSTL over plain scriptlets is. I've seen discussions that say that this allows non-programmers to create dynamic web pages because you don't have to know Java. But really now, just look at the example above: How is this NOT "programming"? Sure, it's not Java, but by any rational definition it is a programming language. So instead of learning and using Java, you can learn and use Java AND learn and use another language. What is gained, besides adding to the amount you have to learn? – Jay Oct 4 at 3:46
vote up 1 vote down

A simple approach:

<%@page errorPage="Error.jsp" %>

<%
 String errorMessage = SomeClass.getInstance().doSomething();
 if (errorMessage != null) {
       throw new Exception(errorMessage); // Better throw the exception from doSomething()
 }
 pageContext.forward("index.jsp");
%>


Error.jsp
.........
<%@ page isErrorPage='true' %>
<%
out.print("Error!!!");  
out.print(exception.getMessage());
%>

Better approach:

Invoke the doSomething() from a servlet. Set your error page in web.xml

<error-page>
        <exception-type>java.lang.Exception</exception-type>
        <location>/WEB-INF/jsp/Error.jsp</location>
</error-page>
link|flag
Personally -- and this is a totally personal preference, perhaps -- I think it's easier to do my flow control in JSP rather than with a combination of JSP, servlets, and web.xml settings. And the reason is illustrated by that sentence: If I do it all in JSP, then it's in one place, instead of three. – Jay Oct 4 at 3:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.