使用 tomcat

发布于 2024-12-06 11:37:24 字数 225 浏览 0 评论 0原文

我习惯使用 WAMP,我发现它很容易理解。现在我需要启动 JSP,并且我已经下载了 Tomcat7。 我将它与 JRE 和 Eclipse 一起安装,但我就是不明白它是如何工作的。 我将项目放置在 /webaps/ 中,但是当我访问本地主机时,它仅显示 WAMP 项目(放置在 /www/ 文件夹中)。

这个Tomcat服务器到底是如何使用的?有没有办法将它与WAMP结合起来,以便更容易使用?

谢谢!

I'm used to work with WAMP and I find it very easy to understand. Now I need to start up with JSP and I've downloaded Tomcat7.
I installed it together with JRE and Eclipse but i just can't get how it works.
I placed my project in /webaps/ but when i access the local host, it shows just the WAMP projects (placed in /www/ folder).

How exactly is this Tomcat server used and is there a way to combine it with WAMP so it can be easier to use?

Thanks!

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

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

发布评论

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

评论(3

野の 2024-12-13 11:37:24

Tomcat 默认侦听端口 8080。确保您打开 http://localhost:8080。端口号可在 Tomcat 的 /conf/server.xml 中配置。

要让 Tomcat 和 WAMP(特别是:Apache HTTPD)协同工作,请使用 mod_jk。或者使用 XAMPP,它在 WAMP 旁边还集成了 Tomcat。

Tomcat listens by default on port 8080. Make sure that you're opening http://localhost:8080. The port number is configureable in Tomcat's /conf/server.xml.

To get Tomcat and WAMP (specifically: Apache HTTPD) to work togeher, use mod_jk. Or use XAMPP, it comes with integrated Tomcat next to WAMP as well.

究竟谁懂我的在乎 2024-12-13 11:37:24

你启动了吗?启动脚本通常位于 unix 环境下的 TOMCAT/bin/startup.bat 或 Tomcat/bin/startup.sh 中。

Did you start it up? The startup script is usually in TOMCAT/bin/startup.bat or Tomcat/bin/startup.sh on a unix environment.

哽咽笑 2024-12-13 11:37:24

就像@BalusC所说:你的tomcat通常在端口8080上运行。

但同样重要的是你编译了项目的java类。
您的 eclipse 项目不会自动编译。

最简单的方法:将项目导出为 *.war/webapps 文件夹中。你的 tomcat 应该自动部署你的项目。

但是您也可以使用 Tomcat6 IDE for eclipse,您可以通过“Run As”/“On Server”启动项目

Like @BalusC said: You tomcat is normally running at port 8080.

But also important is that you compiled your java classes of your project.
Your eclipse project is not autocomplied.

Most simple way: export you project as *.war in the /webapps folder. than your tomcat should autodeploy your project.

But you could also use the Tomcat6 IDE for eclipse where you can start your project by "Run As"/"On Server"

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