Tomcat 服务器未在 Eclipse 中运行项目

发布于 2024-10-17 18:06:58 字数 278 浏览 7 评论 0原文

我有一个在 eclispe 中使用 spring 的基本 Web 项目。 我已经安装了 tomcat v7 。

现在,当我单独启动服务器,不添加任何应用程序时,它运行正常 但是当我将项目添加到服务器然后对其进行 strat 时,就会出现错误

"Tomcat 7 failed to start"

最初该项目工作正常,但后来我删除了一些 spring jar,然后我再次添加,但出现此错误。

现在有什么办法可以找出问题所在吗?有日志文件吗???

I have one basic web project using spring in eclispe.
I have installed tomcat v7 .

Now when i start server alone , without adding any application then it runs ok
but when i add the project to server and then strat it then error comes

"Tomcat 7 failed to start"

Initially the project was working properly but then i deleted few spring jars and then i added again but i get this error.

Now is there any way to find whats the problem. Any log files???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别再吹冷风 2024-10-24 18:06:58

我建议您不要在 Eclipse 中启动它,除非您可以在 Eclipse 外部成功启动它。

打开命令 shell,确保 Tomcat /bin 在您的 PATH 中,然后执行 catalina.bat 脚本。您将能够在 shell 中看到更详细的消息(如果有)。

您还应该检查 Tomcat /logs 目录,看看它们可以告诉您什么。

应该在启动脚本中正确设置 CLASSPATH。

更新:

既然您知道无需 Eclipse 也可以启动 Tomcat,那么您就知道问题出在 IDE 中。

我的猜测是,您的项目需要 Tomcat /lib JAR 可用,但它们不可用。您可以告诉 Eclipse 在构建和运行时将其在特定目录中找到的所有 JAR 添加到 CLASSPATH(可以使用 IntelliJ)。右键单击项目根目录,查看是否有下拉菜单可添加到路径。

I'd recommend not starting it in Eclipse until you can start it outside of Eclipse successfully.

Open a command shell, make sure that the Tomcat /bin is in your PATH, and execute the catalina.bat script. You'll be able to see more detailed messages, if any, in the shell.

You should also check the Tomcat /logs directory to see what they can tell you.

The CLASSPATH ought to be set properly in the startup script.

UPDATE:

Since you know you can start Tomcat without Eclipse, you know that the issue is in the IDE.

My guess is that your project needs the Tomcat /lib JARs to be available and they're not. You can probably tell Eclipse to add all the JARs it finds in a particular directory to your CLASSPATH when you build and run (you can with IntelliJ). Right click on the project root and see if there's a drop down to add to the path.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文