Skip to content

Employee Form Application Using Servlets, JSP, JDBC and Maven

Notifications You must be signed in to change notification settings

sabirahmedshaik/employee-form-application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Employee form application using JSP, Servlets, JDBC and Maven.

Create with below details:

  1. Employee id
  2. Employee Name
  3. DOB
  4. Blood Group
  5. Experience
  6. Contact No

JSP Pages:

  1. Home page to enter details and add or search
  2. List page where all employees details can be seen (after clicking view all should redirect to that page 2 from page 1)

Provide ADD, Search Employee button in the below page, add view all employee button too:

  1. ADD will add the new employee to the table if not already exists.
  2. Search will search for the employee id if exists will return whole details if not return "User Details Not Found" and provide UPDATE and REMOVE button at the end of each row of the table.

LIST PAGE:

  1. Show table with all details.
  2. End of each row should have UPDATE and DELETE button.

EXCEPTION SCENARIOS:

  1. Exception Scenario 1: If user details is not found show error message "User details Not Found"
  2. Exception Scenario 2: If user details is already found show error message "User details already exists".