Skip to content
HaoranYu edited this page Jul 20, 2019 · 2 revisions

H+ Sport application

Implement Model -> View -> Controller(MVC) architecture:

  1. View - JSP or HTML files
  2. Controller - servlet classes that intercept request and prepare response
  3. Model - data access object (DAO) classes that talk to the database

MySQL as the db

Schema name: Hplus tables: Users - to store all user information Products - to store all product-related information Orders - to store order history of a particular user

Clone this wiki locally