vote up 0 vote down star

How can I pass Parameters between JSP pages using pure Java Code?

I.e. I don't want to use codes like the following:

<jsp:include page="<%=fileName%>" flush="true">
                        <jsp:param name="txtUsername" value="<%=_USERNAME_%>" />
                        <jsp:param name="txtName" value="<%=name%>" />
                        <jsp:param name="txtPassword" value="<%=_PASSWORD_%>" />
                </jsp:include>

I need a pure Java code.

flag

1 Answer

vote up 1 vote down

How about:

<% request.setAttribute("foo", "bar"); %>
<jsp:include page="<%=fileName%>" flush="true" />

And the corresponding usage in the included file:

<%= request.getAttribute("foo") %>

EDIT: Typo fixed

link|flag
Would this work in case of Redirecting pages with parameters? – JMSA Jul 17 at 6:41
@JMSA: This solution does only work for server-side forwards, like includes. To handle redirects, you might add the attributes to the session not the request. But then the attributes will stay as long as the session is active. – mkoeller Jul 17 at 9:50

Your Answer

Get an OpenID
or

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