Hey folks.
I am fresh at frameworks like
JSF and I have some questions :
I have developed a simple web application based upon MVC , a controller
constructs a bean which in turn gets some data from the database and puts the data in the request scope, then the controller forwards the request to a
JSP page which retrieve the data from the scope and prints the values.
I want to use JSF instead of creating my own MVC framework.
but the problem is how can I create the bean then forward the request to the JSP page ?
it seems to me that JSF is only useful for HTML forms that needs navigations rules, right ?
any ideas how to migrate my application to JSF ?