I\'m starting a new JSF (2) project. I realize that pure JSF has some limitation and I\'m planning to drop in spring. JSF is a relatively new approach in spring (there is no
I'm using JSF 2 together with Spring 3 for Dependency Injection etc.
I'm not familiar with Web Flow and I don't use it.
In your faces-config.xml
you can register the Spring SpringBeanFacesELResolver
.
org.springframework.web.jsf.el.SpringBeanFacesELResolver
Then you can access Spring managed beans in your JSF code!
Have a look at the Spring documentation and the API docs.