2

我正在开发一个关于 Eclipse 的网络应用程序项目。
我有一个奇怪的问题:每次我尝试向我的项目添加一个新的 servlet 时,当我尝试运行 tomcat 时,我都会收到此错误:

Server Tomcat v7.0 Server at localhost failed to start.

而且我再也无法运行我的项目了。

这是我的 web.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>Jeans4</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>

  <servlet>
    <description></description>
    <display-name>prova</display-name>
    <servlet-name>prova</servlet-name>
    <servlet-class>Jeans.prova</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>prova</servlet-name>
    <url-pattern>/prova</url-pattern>
  </servlet-mapping>

  <servlet>
    <description></description>
    <display-name>FileUploadDBServlet</display-name>
    <servlet-name>FileUploadDBServlet</servlet-name>
    <servlet-class>Jeans.FileUploadDBServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>FileUploadDBServlet</servlet-name>
    <url-pattern>/FileUploadDBServlet</url-pattern>
  </servlet-mapping>

  <servlet>
    <description></description>
    <display-name>BlobDisplay</display-name>
    <servlet-name>BlobDisplay</servlet-name>
    <servlet-class>Jeans.BlobDisplay</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>BlobDisplay</servlet-name>
    <url-pattern>/BlobDisplay</url-pattern>
  </servlet-mapping>



</web-app>

如果我以这种方式删除我所有的 servlet 标签:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.coma/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>Jeans4</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list> 
</web-app>

tomcat 工作,并没有给我那个错误。

4

3 回答 3

3

一个 tomcat 实例已经在运行(并且第二个实例由于端口已经在使用中而无法运行),或者您的配置中有一些错误阻止 tomcat 启动。您需要查看 tomcat 日志以确定原因。见"<tomcat_dir>/logs/

于 2013-10-24T12:59:49.603 回答
0

Once I had the same issue and it turned out that I forgot to include / in the url pattern for my servlet. So if you are using annotations for some of your servlets and, for example, you have one of your servlets annotated like this @WebServlet("MyServletSessionContext") instead of @WebServlet("/MyServletSessionContext") and try to deploy it and restart tomcat you will get this error. Make sure that you have / for all your urlPatterns

于 2017-01-13T11:19:45.643 回答
0

如果你使用过 Eclipse 或 Spring Tool Suite,并且在 Servlet 定义(java 类)中使用了注解@WebServlet,那么你必须在调用 Servlet 时将项目名称作为上下文路径。例如:我的 servlet 是 @WebServlet(name="Employee",value="/Employee") public class Employee extends HttpServlet {...}

我的项目(模块)名称是 JSP_Project 那么你应该在表单标签的 action 属性或 ajax 的 url 属性中写入这个值:

. 或 url:'/JSP_Project/Employee' 就是这样。
于 2021-05-16T17:48:17.700 回答