This document describes a JSP and Servlet based shopping cart application with three main components: 1) The shopping cart application with screenshots for reference. 2) A standalone JDBC application to retrieve data from MySQL tables for departments and products, with the products table having a foreign key to the departments table. 3) Integrating the JDBC application into the JSP and Servlet code to modify the shopping cart.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
339 views
JSP Servlet Shopping Cart
This document describes a JSP and Servlet based shopping cart application with three main components: 1) The shopping cart application with screenshots for reference. 2) A standalone JDBC application to retrieve data from MySQL tables for departments and products, with the products table having a foreign key to the departments table. 3) Integrating the JDBC application into the JSP and Servlet code to modify the shopping cart.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
1. JSP + Servlet shopping cart application.
Attaching some screenshots of shopping
cart application for your reference alone. 2. Standalone JDBC Application to bring over the resultset from MySQL DB. Create two tables DEPARTMENTS and PRODUCTS. DEPARTMENTS will have DEPARTMENT_ID as Primary Key and DEPARTMENT_NAME. PRODUCTS will have PRODUCT_ID as primary key and DEPARTMENT_ID as a foreign key. Retrieve all the products available in a department and list on the JSPs. 3. Integrate the JDBC Application into JSP + Servlet code and modify the shopping cart