Sorry for this dummy question, but something is going wrong with this little sample :
<div id="footer">
<form action="debut" method="GET">
<button id="btn-start" class="btn btn-success" type="submit">Commencer</button>
</form>
</div>
I'm trying to call a servlet declared like this :
@WebServlet("/debut")
public class DebutServlet {
Why the action does not work ?
Thank you