“glue”是spring
ELResolver,您必须在其中配置
faces-config.xml:
<application> <!-- This is the JSF 1.2 ELResolver that delegates to the Spring root WebApplicationContext resolving name references to Spring-defined beans. --> <el-resolver> org.springframework.web.jsf.el.SpringBeanFacesELResolver </el-resolver> </application>
这意味着每个
#{bean.property}都通过bean在spring上下文中解析来处理。



