"Managed bean" is a Java EE specific term for Javabean classes which are designed to act as a controller in some MVC application.
I want to update the second SelectOneMenu when I select any item of the first SelectOnMenu. As it is now, …
java ajax jsf managed-bean selectonemenuCould someone please tell me how to use negation in the value of a component say checkbox to enable and …
jsf managed-beanWhat is the difference between import javax.annotation.ManagedBean; import javax.enterprise.context.SessionScoped; and import javax.faces.bean.ManagedBean; …
jsf cdi managed-beanI've a session scoped bean: @Named @SessionScoped public class SessionBean implements Serializable { private String someProperty; public String getSomeProperty() { return someProperty; } } …
jsf constructor nullpointerexception cdi managed-beanI'm trying to create instances of CDI managed beans using the BeanManager rather than Instance .select().get(). This was suggested …
java garbage-collection cdi managed-bean jboss-weldI'm running with the following problem. I have a few Managed Beans that are shared between, at this moment, two …
jsf managed-bean postconstructI'm quite new to JSF and not really "used" to the different thinking so I'm struggling on what (I assume) …
jsf design-patterns code-injection managed-bean postconstructI'm trying to deal with @javax.faces.bean.ManagedProperty but without success ! I've been following this guide, and it not …
jsf cdi managed-bean managed-propertyIs there a way to call a method upon leaving a page with JSF?
jsf primefaces managed-bean window.onunloadI figured that there are two general ways to obtain an auto-created CDI managed bean instance via BeanManager when having …
cdi managed-bean