| Author |
ServleContext In Beans
|
Vikas Aggarwal
Ranch Hand
Joined: Jun 22, 2001
Posts: 140
|
|
I have create an Object and Placed in the context using "getServletContext().setAttribute("x", xyz)" in a servlet. Now I want to access the same from the servlet context in a bean/class. How it can be done? Thanks
|
 |
Kyle Brown
author
Ranch Hand
Joined: Aug 10, 2001
Posts: 3879
|
|
The only way to do it is to pass the servlet context object to your class. You could pass it in in the constructor and hold onto it for the lifetime of the instance, or pass it in through another method. Kyle
|
Kyle Brown, Author of Persistence in the Enterprise and Enterprise Java Programming with IBM Websphere, 2nd Edition
See my homepage at http://www.kyle-brown.com/ for other WebSphere information.
|
 |
 |
|
|
subject: ServleContext In Beans
|
|
|