| Author |
jsf bean instance in servlet
|
Reshma Reddy
Ranch Hand
Joined: Dec 21, 2006
Posts: 197
|
|
hi all,
how to get jsf bean instance in servlet.
thanks in advance.
|
 |
Tim Holloway
Saloon Keeper
Joined: Jun 25, 2001
Posts: 14572
|
|
|
It depends on the bean's scope. JSF beans are just ordinary session, request and application scope objects, you you'd gain access to them exactly the same as you would for non-JSF beans. For example, "session.getAttribute("myjsfbean")".
|
Customer surveys are for companies who didn't pay proper attention to begin with.
|
 |
Reshma Reddy
Ranch Hand
Joined: Dec 21, 2006
Posts: 197
|
|
hi tim
my jsf bean scop is session level and I tried this but not working
Bean searchBean = (Bean) request.getSession().getAttribute("bean");
thanks
|
 |
 |
|
|
subject: jsf bean instance in servlet
|
|
|