Primefaces 5.2
JSF 2.0.11
WebLogic 10.3.6
Java 1.6
I'm making a site with a search form. Depending on what is entered in the search form, a SQL query is made in a servlet, and a List of a structure I call Rows is returned to the servlet with the results of the query.
I'm trying to use Primefaces to display this List of Rows, but am having some trouble. This is my first time using beans. I'm not exactly sure how to do it. Should I return the List of Rows to the servlet, pass that into the jsf page, then pass that in the bean? Not sure how these beans work.