使用 tomcat
我习惯使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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.
你启动了吗?启动脚本通常位于 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.
就像@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"