Post method in Servlet is not being called again after being executed once
- by SaurabhCsIITKgp
I am implementing a database based web application using servlets.
Now, when I input a parameter using a form in the jsp page, it redirects it to a servlet which subsequently adds the value to the database (the servlet creates a new table if the table doesn't already exist).
The creation of the table and the addition of value works fine if the…