gpt4 book ai didi

eclipse - 无法加载 servlet-api.jar

转载 作者:行者123 更新时间:2023-11-28 22:05:52 25 4
gpt4 key购买 nike

我正在运行 Eclipse Indigo 3.7、Tomcat7、Spring MVC 框架 2.5.6。

在我的一个应用程序项目中,我收到以下错误消息:

nov. 22, 2011 9:06:30 PM org.apache.catalina.loader.WebappClassLoader validateJarFile
Infos: validateJarFile(/home/pc/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/SpringMVC/WEB-INF/lib/servlet-api.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class

我读过,对于像我这样的 Web 应用程序项目,servlet-api.jar 不应包含在项目构建路径中;是对的吗?我应该把 servlet-api.jar 放在哪里,因为我的应用程序中有 servlet?

另外我想问一下:

我经常读到将 jar 文件放在 WEB-INF/lib 文件夹中,有时我读到将它们作为外部 Jar 包含在项目构建路径中,有时我读到同时执行这两个操作。

例如,我读过:-servlet-api.jar已经在Tomcat7/lib目录下,但还需要包含在项目路径中;-用于java的MySQL JDBC驱动程序必须包含在项目路径中,并复制到WEB-INF/lib和Tomcat7/lib目录中。

谁能告诉我真相并帮助我真正理解如何在 eclipse 项目中管理 «Jar librairies»?

非常感谢。

最佳答案

  • 我了解到,对于像我这样的 Web 应用程序项目,servlet-api.jar 不应包含在项目构建路径中;是对的吗?我应该把 servlet-api.jar 放在哪里,因为我的应用程序中有 servlet?

    Servlet containers (such as Tomcat)have the servlet JARs in the classpath. So your application WAR should exclude it.

  • 我经常读到将 jar 文件放在 WEB-INF/lib 文件夹中,有时我读到将它们作为外部 Jar 包含在项目构建路径中,有时我读到在同时。

    JARs referenced by your application are typically placed in WEB-INF/lib. Exceptions are things like servlet.jar. You will need them at compile time but will have to exclude them from the resulting WAR.

  • 我读到:-servlet-api.jar 已经在 Tomcat7/lib 目录中,但还需要包含在项目路径中; -用于java的MySQL JDBC驱动程序必须包含在项目路径中,并复制到WEB-INF/lib和Tomcat7/lib目录中。

    That is correct. To amplify the answer to previous question, you need these JARs are compile time so that you can compile. Some JARs -- like the servlet-api are provided by the servlet container.

  • 谁能告诉我真相并帮助我真正理解如何在 eclipse 项目中管理 «Jar librairies»?

    Build tools such as Maven help manage your project's external library dependencies with fine-grained control over when these dependencies are needed (compile time only, compile and test, at runtime, etc).

关于eclipse - 无法加载 servlet-api.jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8244964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com