Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to get an instance of a managed bean whose scope is request in JSF??

share|improve this question
possible duplicate of JSF - get managed bean by name – BalusC May 18 '11 at 17:02

2 Answers

If you don't specify a specific name in the @ManagedBean(name = "name") annotations name attribute, the name defaults to the class' name with it's first letter lowercased. Same thing if you use JSF <2.0, but it uses xml instead of annotations.

You can get anything you need from that managed bean then using EL, which in JSF is #{beanName.field}. If using EL 2.2+, you can call a method with #{beanName.method('param')}.

Also, for the future -- you really should specify the JSF version and containers that you run it in.

share|improve this answer

For jsf 1.2 I use in code next expression:

    MyBean identifier =  (MyBean) context.getApplication().getELResolver().getValue(context.getELContext(), null, "myRequiredBean");

where "myRequiredBean" - beans defenition in faces-config.xml

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.