Top "Managed-bean" questions

"Managed bean" is a Java EE specific term for Javabean classes which are designed to act as a controller in some MVC application.

How to access property of one managed bean in another managed bean

I have a managed bean (SessionScope as follow) @ManagedBean(name="login") @SessionScoped public class Login implements Serializable { private String userSession; …

jsf jsf-2 parameter-passing managed-bean
Read resource bundle properties in a managed bean

Using <resource-bundle> files I'm able to have i18n text in my JSF pages. But is it possible …

jsf internationalization managed-bean
Using jquery ajax to call a jsf managed bean method (an AjaxBehaviorEvent listener handler)

i would like to know if there is a way to fire a jsf managed bean method (with an AjaxBehaviorEvent …

jquery ajax jsf managed-bean
How to set -Dorg.apache.el.parser.COERCE_TO_ZERO=false programmatically

This question is similar to: jsf: integer property binded to a inputtext in UI is set to zero on submit …

jsf tomcat el jvm-arguments managed-bean
How and when is a @ViewScoped bean destroyed in JSF?

The lifecycle of the @RequestScoped and @SessionScopedBean managed beans are managed by the Servlet container itself since they are basically …

jsf jsf-2 managed-bean destroy view-scope
JSF Managed bean and managed property both necessary?

I'm new to JSF and was wondering: If I have a controller that handles all the work for a given …

jsf managed-bean managed-property
c:set for bean properties

I'm looking for some piece of code for setting a property in a JSF managed bean. My first idea was …

jsf properties jstl managed-bean
Illegal Syntax for Set Operation

I have a problem in connecting My xhtml page to the managed bean, the action on the commandButton works but …

jsf cdi el managed-bean
JSF 2 localization (managed bean)

I have a properties file for localization: foo=Bar title=Widget Application This is tied in as a resource-bundle in …

jsf jsf-2 cdi managed-bean
The type ManagedBean is deprecated

I just created a new maven project and Added a index controller. Then I used managedbean annotation. But I get …

jsf jsf-2 deprecated managed-bean