I'm currently doing a project that require a bean that created in new session, and this bean need to be accessed using both servlets & jsp.
For example:
<jsp:useBean id="abc" scope="session" class="Testing" />
This statement make an object of "abc" available for my jsp pages within the same session. But i also want to use this "abc" in my servlets. How can it be done?
 
jhteo.

Reply via email to