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.
- Java
- JSP (Java Server Pages)
- Servlets
- MVC Architecture
- HTML
- Apache Tomcat Server
- Create Contact
- Search Contact
- View Contact
- Delete Contact
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.
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.