Giter Club home page Giter Club logo

fas96 / jsp-servlet-database-crud-application Goto Github PK

View Code? Open in Web Editor NEW

This project forked from scbushan05/jsp-servlet-database-crud-application

0.0 1.0 0.0 16 KB

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.

Home Page: https://bushansirgur.in/creating-mvc-database-web-application-in-jsp-and-servlets-create-read-update-delete/

Java 100.00%

jsp-servlet-database-crud-application's Introduction

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.