You will be creating the first phase of an eQcommerce web application. The first phase will require displaying a list of products. You will need to display the following for each product on this "index" page:
• The product name
• The category that the product belongs to
• The product's name should be a hyperlink to a "product info page" that will display
the specific details for that product
See the example output in Example%1.
The links from your "index" page should lead to a "product info" page where the detailed specifics of a product should be displayed. See Example%2. Hint, the product ID is a unique way to identify and find a product.
Your implementation should follow the ModelQViewQController paradigm.
I have already provided you with a web.xml, basic servlet and JSP to use as a template for the "index" page. You will need to create any additional servlet and jsp pages necessary to implement the "product info" page. I have also provided you with a ProductInfo model
class that is responsible for all the details of accessing the data storage system. See the Appendix.
Attachment:- ASSIGNMENT.rar