Spring beans injected into JSF Managed Beans

前端 未结 2 1621
予麋鹿
予麋鹿 2020-12-16 08:09

Problem Description: My injected Spring bean defined as a Managed-Property to a JSF backing bean is not being instantiated. Its always coming up null when I retreive the Man

2条回答
  •  醉梦人生
    2020-12-16 08:40

    First of all and I think this your problem that DelegatingVariableResolver is deprecated in all JSF version after 1.1 and you are using 1.2 so please use this following configuration.

     
     
    org.springframework.web.jsf.el.SpringBeanFacesELResolver 
     
    
    

    Hope it helps.

提交回复
热议问题