NullpointerException Binding not working JSF managed bean.

Posted by Nitesh Panchal on Stack Overflow See other posts from Stack Overflow or by Nitesh Panchal
Published on 2010-03-15T15:38:56Z Indexed on 2010/03/15 15:39 UTC
Read the original article Hit count: 198

Filed under:

Hello, I created a simple HtmlInputText

  <h:inputText binding="#{IndexBean.objUIInput}" />

Then in my managed bean, it is :-

   private   UIInput objUIInput;

    public UIInput getObjUIInput() {
        objUIInput.setValue("laala");
        return objUIInput;
    }

    public void setObjUIInput(UIInput objUIInput) {
        System.out.println("Set!!");
        this.objUIInput = objUIInput;
    }

But i always get NullpointerException. Do i need to do anything extra on my JSF page? like we do jsp:usebean setproperty? Please help me.

© Stack Overflow or respective owner

Related posts about jsf