Project: OOP - Web Project - JSP Servlet Project Table of Contents
Introduction
Packages
com.projectA.controllers
com.projectA.models
com.projectA.dao
Introduction
This project is a JSP Servlet-based web application designed to serve as a framework for building robust and scalable applications. Packages com.projectA.controllers
Responsible for handling incoming HTTP requests, and returning responses. Controllers call methods from the models and dao packages to perform business logic and data manipulation. com.projectA.models
Contains classes that represent the data model of the application. They encapsulate the properties and behavior of the application's data entities. com.projectA.dao
Data Access Objects (DAO) for the project. Responsible for interacting with the database and providing an API for the controllers to manipulate the data.