1 Reply Latest reply on Apr 5, 2011 5:57 AM by ilya_shaikovsky

    problem in binding the bean

    orkun

      hello

       

      I tried to build the example richfaces-maven project as it is explained in "4_0_X/Developer_Guide/"

       

      I encountered this message:

       

      Apr 4, 2011 9:12:09 PM org.richfaces.context.ExtendedPartialViewContextImpl processPartialExecutePhase

      SEVERE: /index.xhtml @14,66 value="#{richBean.name}": Target Unreachable, identifier 'richBean' resolved to null

      javax.el.PropertyNotFoundException: /index.xhtml @14,66 value="#{richBean.name}": Target Unreachable, identifier 'richBean' resolved to null

       

      what do I have to do to bind the "richBean" ?

       

      regards

        • 1. problem in binding the bean
          ilya_shaikovsky

          you need to add @ManagedBean annotation to it or register in faces-config. And check that your name for the bean is the same as used on the page. E.g. by default MyBean will be registered as "myBean" by default using annotation.