-
Notifications
You must be signed in to change notification settings - Fork 0
Servlets
Ronak Malik edited this page Dec 8, 2020
·
2 revisions
Servlets are the heart of how the server works. They are asynchronous instances with methods that get called when a specific type of request is sent to the endpoint corresponding with that servlet. When a GET request is sent to the /Student servlet, the doGet method in the class StudentServlet is called.