| Author |
Return object from servlet to jsp
|
Tim Berett
Ranch Hand
Joined: Jun 14, 2002
Posts: 35
|
|
Can someone tell me how to return a object from the servlet to the jsp page? Any sample codes for servlet and jsp portions? Newbie here.
|
 |
Paul Stevens
Ranch Hand
Joined: May 17, 2001
Posts: 2823
|
|
Welcome to the JavaRanch! Please adjust your displayed name to meet the <BR>JavaRanch Naming Policy. <BR>You can change it here.<BR><BR>Thanks! and welcome to the JavaRanch!
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12268
|
|
The usual way of allowing servlets and JSP to share objects is by attaching the object to either a HttpSession or the ServletContext. It depends on whether the object contains data specific to a particular user or if it is more general. NOTE: you can only share objects this way between servlets and JSP in the same "web application." The methods are all in the servlet API - you should have a copy if you are going to be serious about servlets. Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: Return object from servlet to jsp
|
|
|