I just started with GAE, and I already ran into problems along the way. When I deploy the application, it does not seem to update it, and when I launch it in the browser, it still launches the old version.
My simple code is:
import java.io.IOException; import javax.servlet.http.*; @SuppressWarnings("serial") public class AppEngineProjectServlet extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.setContentType("text/html"); resp.getWriter().println("<p>Hi there</p>"); }
}
I created a new web application project in Eclipse and I got this code. I just changed the text from Hello World to Hello, and when I deploy it, it still starts Hello World!
I am also trying to change application versions when deploying and installing a new default version, but nothing works for me. Is there any specific reason why this is happening that I could miss?
source share