无法使用Eclipse和Tomcat 9访问servlet

时间:2019-01-14 10:25:02

标签: java eclipse tomcat

我在Eclipse中创建了一个名为TestWeb的新动态Web项目。我在WebContent文件夹中添加了一个index.html并创建了一个Web Servlet,使该Servlet在/ Test可用。

我可以访问http://localhost:8080/TestWeb处的index.html文件,但是,我不能访问http://localhost:8080/TestWeb/Test处的servlet。请协助。

这是Servlet的代码:

@WebServlet("/Test")
public class Test extends HttpServlet {
    private static final long serialVersionUID = 1L;

    public Test() {
        super();
    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
        response.getWriter().append("Served at: ").append(request.getContextPath());
    }

}

这是我的web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="4.0">
  <display-name>TestWeb</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>
</web-app>

2 个答案:

答案 0 :(得分:0)

首先检查您的web.xml(部署描述符)文件,确保该文件中定义了正确的xml模式,如果一切正常,则按如下所示更改注释 @WebServlet(“ / Test / *”)

答案 1 :(得分:0)

我通过重命名项目解决了这个问题。我的项目名称由两个词和一个空格组成。 “密码服务”。将项目重命名为“服务器”后,便可以访问servlet。