Hello, I have a question with Servlet's.
Imagine the picture:
raiz /
/ formulario.jsp
/ Servlet
/ retornos / retorno.jsp
The form sends the data to the Servlet by post or get!
After this submission, using RequestDispatcher what actually happens?
A) return.jsp is included in form.jsp
B) Servlet redirected the data from it to return.jsp
C) Does Servlet include return.jsp in your body as if you were printing a text?
What happens in reality?