open class SpringBeanFacesELResolver : ELResolver
JSF Configure this resolver in your All your JSF expressions can then implicitly refer to the names of Spring-managed service layer beans, for example in property values of JSF-managed beans: with "mySpringManagedBusinessObject" defined as Spring bean in applicationContext.xml:
|
|
open class WebApplicationContextFacesELResolver : ELResolver
Special JSF In contrast to SpringBeanFacesELResolver, this ELResolver variant does not resolve JSF variable names as Spring bean names. It rather exposes Spring's root WebApplicationContext itself under a special name, and is able to resolve "webApplicationContext.mySpringManagedBusinessObject" dereferences to Spring-defined beans in that application context. Configure this resolver in your
|