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? 🙂
You’ve not declared the bean using
@SessionScopedfromjavax.faces.beanpackage, but instead fromjavax.enterprise.contextpackage. This don’t work in combination with@ManagedBeanfromjavax.faces.beanpackage. The bean will then default to the request scope and behave like@RequestScoped.Fix your imports.