Hi I am getting a new session bean for every ajax request made to this Bean... Can any of you tell me why ?

...... imports ......
@Named(value = "userController")
@SessionScoped
public class UserController implements Serializable {

private User current;
private DataModel items = null;
@EJB
private br.com.cflex.itm.dataaccess.UserFacade ejbFacade;
private PaginationHelper pagination;
private int selectedItemIndex;

public UserController() {
}

public Collection<Project> getMyProjectList(){
    String login = FacesContext.getCurrentInstance().getExternalContext().getUserPrincipal().getName();
    User u = ejbFacade.getUserFromLogin(login);
    return u.getProjectCollection();
}    

public User getSelected() {               
    if (current == null) {
        current = new User();
        selectedItemIndex = -1;
    }
    return current;
} 
....... rest of class ....

Every time I make this request I am getting a new of this SessionBean I for as far as I know I should be getting the same guy over and over again.

Thanks

                        <h:panelGrid columns="2" cellpadding="2">
                          <h:form>
                                <h:outputText value="#{bundle.FirstName}"/>                                
                                <h:inputText id="name" value="#{userController.selected.name}">
                                    <f:ajax event="keyup" execute="name" render="out" />
<!--                                        <f:ajax event="keyup" render="out"/>-->
                                </h:inputText>
                                <p>
                                <h:commandButton value="add"></h:commandButton>      
                                <h:outputText id="out" value="#{userController.selected.name}"/>
                                </p>
                            </h:form>
                        </h:panelGrid>
link|improve this question

1  
For the sake of tidyness: This has been answered here: stackoverflow.com/questions/6581010/… (no offense meant, question is highly different from yours) – Sebastian Wramba Oct 7 '11 at 15:00
none taken... thanks for the info. – Cfontes Oct 7 '11 at 16:14
feedback

1 Answer

up vote 2 down vote accepted

That can happen if you accidently imported @SessionScoped from the javax.faces.bean package instead of the javax.enterprise.context package.

You're using @javax.inject.Named annotation, so you should import the scopes from the javax.enterprise.context package. The scopes from the javax.faces.bean package only works in combination with @javax.faces.bean.ManagedBean annotation.

A CDI bean without a valid scope will behave like @RequestScoped. A JSF bean without a valid scope will behave like @NoneScoped.

link|improve this answer
Solved !!! Thanks. – Cfontes Oct 7 '11 at 16:13
You're welcome. – BalusC Oct 7 '11 at 16:21
feedback

Your Answer

 
or
required, but never shown

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