Spring MVC + Java Server Faces integration
Hi, I am developing project which is middle scale web application.
I am using spring mvc in one project and java server face in the other project.
But, I want to combine both project into one project. Actually I want to control all url mappings and flows with the
spring mvc and I want to use jsf(primeface) for the ui.
My problem is, I dont know how can I combine FacesServlet and Dispatcher servlet.
I dont know is it possible but I think possible solution should be like
Request -> dispatcher servlet ( process request and return modelview ) -> faces servlet ( process tags ) -> view
This is pseudo solution, how can I apply this solution into real code.
Thanks