The View Scope means that you can keep the object alive as long as you are staying on the view (page).
My bean has this: @ManagedBean @ViewScoped public class BookBean implements Serializable { @ManagedProperty(value = "#{param.id}") // does not work with @ViewScoped …
jsf jsf-2 view-scope http-request-parametersI have a @ViewScope ManagedBean and a @PostConstruct initialisation method. This method is called when a new instance is created, …
ajax jsf jsf-2 view-scope postconstructI am using Primefaces and I have a problem that the setPropertyActionListener isn't fired and thus isn't setting a property …
jsf-2 primefaces managed-bean view-scopeI have a problem with JSF, CDI project. I did a lot of research and I found that in CDI …
jsf jsf-2 cdi view-scopeI have: button on main page and dialog. A would like to have ViewScope life cycle for managed bean (NewDialog.…
java jsf jsf-2 primefaces view-scopeI have a calendar, editor, fileUpload and a dataTable primefaces controls on a jsf facelet. Code is as follows, <?…
jsf jsf-2 primefaces postback view-scopeIn our JavaEE6 project (EJB3, JSF2) on JBoss 7.1.1, it seems we have a memory leak with SeamFaces @ViewScoped. We made …
jsf-2 memory-leaks cdi seam3 view-scope