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 strange problem. Afaik I can inject a SessionScoped bean into a viewscoped, because its broader, than the other. Here is my code:

@ManagedBean
@ViewScoped
public class ProjectBean implements Serializable {

@ManagedProperty(value="#{projectCurrentBean}")
private ProjectCurrentBean currentBean;

public void setCurrentBean(ProjectCurrentBean currentBean) {
    this.currentBean = currentBean;
}     

@ManagedProperty(value="#{userCredentialsBean}")
private UserCredentialsBean activeUser;

public void setActiveUser(UserCredentialsBean activeUser) {
    this.activeUser = activeUser;
}

The 2 managed bean:

@ManagedBean
@SessionScoped
public class ProjectCurrentBean implements Serializable  {

and

@ManagedBean
@SessionScoped
public class UserCredentialsBean  implements Serializable {

It works fine with the UserCredentialsBean, but when I put the ProjectCurrentBean it fails:

Unable to create managed bean projectBean. The following problems were found: - The scope of the object referenced by expression #{projectCurrentBean}, request, is shorter   than the referring managed beans (projectBean) scope of view

why? :)

share|improve this question

1 Answer

up vote 6 down vote accepted

You've not declared the bean using @SessionScoped from javax.faces.bean package, but instead from javax.enterprise.context package. This don't work in combination with @ManagedBean from javax.faces.bean package. The bean will then behave like @NoneScoped.

Fix your imports.

import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;

@ManagedBean
@SessionScoped
public class ProjectCurrentBean implements Serializable {
share|improve this answer
omg, thank you! what a mistake – kristu Nov 19 '11 at 16:24
2  
Be careful with IDE autocomplete. – BalusC Nov 19 '11 at 16:28

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.