|
It is a badly documented issue in Spring 2.5 ...
Well, DelegatingVariableResolver is the way to integrate spring with JSF 1.1 by using a variable-resolver in faces-config.xml, like this:
HTML Code:
<application> <variable-resolver> org.springframework.web.jsf.DelegatingVariableResolver </variable-resolver> </application>
So, Spring 2.5 introduced a new way by using SpringBeanFacesELResolver like this:
HTML Code:
<application> <el-resolver> org.springframework.web.jsf.el.SpringBeanFacesELResolver </el-resolver> </application>
No comments:
Post a Comment