This is a human resource management system where admin can manage everything between employees and departments
Change db.password and db.username in DBdetail.properties file according to ur mysql username and password
1) create database humanresource;
2) use humanresource;
3) create table Department(did int PRIMARY KEY AUTO_INCREMENT, dname varchar(20), location varchar(20));
4) create table Employee(eid int PRIMARY KEY AUTO_INCREMENT, ename varchar(20), email varchar(50) not null, password varchar(15) not null, deptid int , empLeave varchar(15) , FOREIGN KEY(deptid) REFERENCES Department(did));