This is simple SPRING MVC project in which I have used Spring MVC, JDBC Templates for data manipulation and at database side I have used MYSQL database.
2. Create table with name- "users" using below command
CREATE TABLE `usersdb`.`users`
(
`username` VARCHAR(45) NOT NULL,
`password` VARCHAR(45) NULL,
`firstname` VARCHAR(45) NOT NULL,
`lastname` VARCHAR(45) NULL,
`email` VARCHAR(45) NULL,
`address` VARCHAR(45) NULL,
`phone` INT NULL,
PRIMARY KEY (`username`)
)