I am learning Servlets/JSP/MVC and have a question about architecting a simple application. I have a site where people can vote on products.
In the Application Context I have an ArrayList of the Products (model class is called Product)
I have a home Servlet that draws all the Products (reads list from context, forwards as attribute to JSP). The items are drawn out using JSTL.
I have another servlet called ProductRate that can be called when viewing a Product. On doPost() is supposed to record the rating the user gives to a product (specified in a form) and saves this in Session.
I want to be able to join the information on the Home servlet to show not only the product information (stored in Application Context), but also any vote that the user as given to it. If there is no value, then I don't show any thing saying "Thanks for your vote of X" or similar.
Should I add a field to my Product model class called "userRating" or something, and when reading the list on the Home Servlet, look at any session values stored for it and assign the vote value to the "userRating" Model value?
So in effect, I have a fixed list of objects the application always uses, but when drawing them out in a JSP, I want a nice clean way to marry any information stored in session (vote value) so handling the Model in the JSP is a breeze