Estoy leyendo algunos ejemplos de código comentado, y tengo algún problema con las traducciones
¿podeis decirme qué significa este If it is a get request forward to doPost()?
Código:
import javax.servlet.*; import javax.servlet.http.*; import java.io.*; import java.util.*; public class login extends HttpServlet { private String target = "/welcome.jsp"; private String getUser(String username, String password) { // If this was reality, we would perform a SQL return "Sam"; } public void init(ServletConfig config) throws ServletException { super.init(config); } public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // If it is a get request forward to doPost() doPost(request, response); } ............
Asiasss