A simple Java web application built using Servlets, JSP and JDBC
A simple Java web application built using Servlets, JSP and JDBC. The web application allow users to perform CRUD operations on student data.
A new student can be created using the “Add student” button.
Once we click on the save button, the new record will be added to the student table.
We can update any record in the table with new information for firstname, lastname and email using the update action.
We can delete any record in the table using the delete action.
All the user requests will be redirected to the respective JSPs with the help of StudentControllerServlet. Also to perform any persistance operation we will make use of StudentDbUtil class which will
make connection to the database.
JSP, Servlet, JDBC course on Udemy by Chad Darby.