lifecycle « Bean « JSF Q&A





1. JSF 1.1: question about lifecycles, why the rendering attribute influences the managed bean action below?    stackoverflow.com

I have a page "start.jsf" which points to an action #{ruler.start}, this action forwards the request to "flow.jsf". The managed bean "ruler" (request scoped) contains some properties, one of them called ...

2. Help me understand JSF managed bean lifecycle    stackoverflow.com

I have a form bean defined in session scope and a controller bean defined in request scope. I am using JSF to inject the session scoped bean in to the request ...

3. JSF lifecycle - Execute managed bean method after request complete    stackoverflow.com

Using JSF 2.0 and Spring, I use an @RequestScope managed bean. This bean stores information about the logged-in user. It loads the user from the DB in a @PostConstruct method:

@PostConstruct
public void ...

4. ViewScoped bean getting constructed on every request... part 99    stackoverflow.com

ARGH... This seems to have a hundred answers and I haven't found one that works for me, so I guess I will actually ask it again. Here is my ...