Jump to Real's How-to Main page

Pass information to another servlet/jsp

You set attributes on your request object and then forward the request object to the other servlet/jsp.

For a simple string

request.setAttribute("foo", "Real's HowTo");

A parameter received by the first servlet to the second one

String requestVar = request.getParameter("sitename");
request.setAttribute("foo", requestVar);

A Bean

MyBean myBean = new MyBean();
myBean.setFooProperty("Real's HowTo");
request.setAttribute("foo", myBean);

Then you forward the request

RequestDispatcher dispatch = request.getRequestDispatcher("next.jsp");
dispatch.forward(request, response);

If you find this article useful, consider making a small donation
to show your support for this Web site and its content.

Written and compiled by Réal Gagnon ©1998-2005
[ home ]