The servlets named [LoginCheckServlet] and [LoginCheckServlet] are both mapped to the url-pattern [/

(⊙o⊙)…

在MyEclipse里成功部署项目无报错,但Tomcat服务器打开后报错404,not available。。。。

根据Tomcat报错原因:The servlets named [LoginCheckServlet] and [LoginCheckServlet] are both mapped to the url-pattern [/servlet/LoginCheckServlet] which is not permitted  

找到项目路径下的WEB-INF的web.xml  ,并没有两个LoginCheckServlet  ,纳闷了 问题在哪?



解决办法:这里显然是xml文件的问题。。。

通过删除servlet-name标签中的start /,它需要和前面的servlet名称匹配。

  
    LoginCheckServlet
    /servlet/LoginCheckServlet
  
改成

  
    LoginCheckServlet
    /LoginCheckServlet
  

项目成功运行啦!

你可能感兴趣的:(The servlets named [LoginCheckServlet] and [LoginCheckServlet] are both mapped to the url-pattern [/)