>Question: Is it possible to put variables, in JSP, outside of the per-request scope,
such
>what we can do the pooling also?
>
>Answer: Use scope="session" in the jsp tag Ex:
><jsp:useBean id="beanName" class="com.companyName.packageName" scope="session"/>
Maybe not. Session variables are very different from class variables in servlets.
The former has a from-page-to-page scope, while the later is focused on a single
page, among different requests.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to