Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSF2 Can't reach SessionScoped bean from ViewScoped as ManagedProperty

Tags:

jsf

jsf-2

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? :)

like image 929
krstf Avatar asked Dec 22 '22 06:12

krstf


1 Answers

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 default to the request scope and behave like @RequestScoped.

Fix your imports.

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

@ManagedBean
@SessionScoped
public class ProjectCurrentBean implements Serializable {
like image 179
BalusC Avatar answered Dec 28 '22 06:12

BalusC