· 6 years ago · Mar 19, 2020, 11:30 AM
1//create the model (i.e. vehicle, bank, etc etc)
2in the model, you create the variable names and generate the getters and setters
3// create/download the database
4create table in SQLite, assign a primary key etc.
5// implement the DAO
6 // load/import the driver (jdbc jar file) - download the jar file and paste it into eclipse workspace
7 // getconnection() method
8 // implement the CRUD methods
9
10 // test the dao in a standalone java project
11
12// create a dynamic web project
13 // import all the required jar files (Webcontent/WEB-INF/lib)
14 // create packages
15 // import the models and DAO
16
17 // create and implement the home page servlet
18 // insert servlet
19 // update servlet
20 // delete servlet
21 // API
22 // implement POST GET PUT and DELETE
23 // test postman
24 // secure web app with login
25 // secure API with APIKEY
26
27// design it (bootstrap/css)