I am trying to delete an event from the table event but every time I click the button I get an error saying The Requested Resources Are Not Available
. Here's my code:
<servlet-mapping>
<servlet-name>Control_supprime_event</servlet-name>
<url-pattern>/Control_supprime_event</url-pattern>
</servlet-mapping>
I checked the web.xml and it's working:
@WebServlet(urlPatterns = {"/Control_supprime_event"})
I used the annotation but nothing seems to work.
also i made sure the form action name is the same.