我正在使用Jetty服务器使用 Eclipse 插件在我的本地主机上运行。
我的 URL 请求格式为
http://localhost:8080/TestServer/Project/?Action=5
当我调用这个方法时,我的doGet
方法在 servlet 中调用了两次。我没有实现doPost
方法或Service
方法。我只是在使用它,但是对于单个 HTTP 请求,它会调用doGet
servlet 的方法两次运行。
为什么单个 URL 会导致运行两次?
protected void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {
Print("In doGet method");
}