Java Web Applications
Todo Web Application (Server Pages)
The objective of this exercise is to implement a Jakarta server page for displaying a todo list.
Tasks
-
Create the server page
todoList.jsp that renders a list of todos.
-
Modify the servlet
TodoListServlet such that the doGet method adds the todos to the request and forwards the request to the server page.
Solution