Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.17 KB

File metadata and controls

33 lines (22 loc) · 1.17 KB

PhoneBookMVCApplication

This repository contains a Phone Book web application developed using JSP and Servlets following the MVC (Model-View-Controller) architecture. The application allows users to manage contact information through basic contact management features.

Technologies Used

  • Java
  • JSP (Java Server Pages)
  • Servlets
  • MVC Architecture
  • HTML
  • Apache Tomcat Server

Application Features

  • Create Contact
  • Search Contact
  • View Contact
  • Delete Contact

Project Description

The PhoneBookMVCApp is designed using the MVC design pattern where:

  • Model represents the data and business logic.
  • View is implemented using JSP pages for user interface.
  • Controller is implemented using Servlets to handle user requests and responses.

This structure helps in separating the application logic from the presentation layer, making the application easier to manage and maintain.

Purpose of the Project

The purpose of this project is to understand the implementation of the MVC architecture in Java web applications using JSP and Servlets. It demonstrates how user requests are processed through controllers and how data is managed and displayed in the application.