aspose file tools
The moose likes JSF and the fly likes jsf bean instance in servlet Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSF
Reply Bookmark "jsf bean instance in servlet" Watch "jsf bean instance in servlet" New topic
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
    
    7

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
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: jsf bean instance in servlet
 
Similar Threads
How to call servlet from JSF ?
Calling two actionListeners in the same commandButton
JSP 2.0 JSTL
Servlet created JSF bean
Spring web flow, JSF and managedbean in servlet