Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.79 KB

File metadata and controls

57 lines (38 loc) · 1.79 KB

JSP and Servlet Database CRUD Application

Employee Directory is a web application developed using JSP and Servlets. The goal of the application is to keep track of the employees and the application involves the basic CRUD operations, it also involves the MVC Design pattern.

Tools and Technologies used

  1. JSP
  2. Servlets
  3. MVC Design Pattern
  4. MySQL Workbench
  5. Bootstrap 4
  6. Eclipse Oxygen
  7. Apache tomcat 8

Steps to install

1.Clone the application

https://github.com/scbushan05/jsp-servlet-database-crud-application.git

2.Create a MySQL Database

CREATE DATABASE employeedirectory;

3.Create a table and insert values

create table tbl_employee(
id int primary key not null auto_increment,
name varchar(255) not null,
dob varchar(255) not null,
department varchar(255) not null
);

insert into tbl_employee(name, dob, department)values("Jhon", "12-12-1991", "Marketing");

insert into tbl_employee(name, dob, department)values("Sara", "21-05-1992", "Testing");

insert into tbl_employee(name, dob, department)values("Paul", "23-04-1988", "Development");

insert into tbl_employee(name, dob, department)values("David", "18-03-1989", "Support");

4.Change the MySQL Username and Password as per your installation

  • open src/in/bushansirgur/util/DBConnectionUtil.java file.
  • change USERNAME and PASSWORD as per your installation.

You can see the full post @ Here

For More Awesome Projects Subscribe to My Youtube channel B2 Tech

If you find any difficulty in installing the application then reach me @ Bushan Sirgur