Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a login page, which I check if the user exist in my database, if so, the bean user is initialized then I redirect to myprofile.xhtml page, but there (in myprofile.xhtml) I would like to catch the user values with another ManageBean. Just to don't mess with the resposabilities of each view and ManageBean.

UPDATE Follow BalusC approach:

@ManagedBean
@ViewScoped
public class Profile implements Serializable {
    private static final long serialVersionUID = -5621841046523030920L;

    @ManagedProperty("#{login.mUser}")
    private User user;


    // getter and setter
    public User getUser() {
        return user;
    }


    public void setUser(User user) {
        this.user = user;
    }
}

I would like to catch only the initialized object mUser (model).

share|improve this question

1 Answer

up vote 1 down vote accepted

You can inject beans in each other by @ManagedProperty.

E.g.

@ManagedBean
@SessionScoped
public class UserManager userManager;

    private User user;

    // ...
}

and

@ManagedBean
@ViewScoped
public class Profile {

    @ManagedProperty("#{userManager}")
    private UserManager userManager;

    // ...
}
share|improve this answer
thanks mate! =] – Valter Henrique Oct 16 '11 at 14:33

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.