Skip to content

Mohinesh27/spring_mvc_crud_jdbc_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Spring MVC CRUD using JDBC Template

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.

Steps-

1. Create MYSQL database with name- "usersdb"
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`)
)