如何手动安装/配置或设置 tomcat 7?
我从这里下载了apache-tomcat-7.0.20.tar.gz => http://tomcat.apache.org/download-70.cgi
现在我该怎么办手动安装/配置它以使用 eclipse 运行 springframework 项目?
I downloaded apache-tomcat-7.0.20.tar.gz from here => http://tomcat.apache.org/download-70.cgi
Now how can i install/configure it manually to run springframework project with eclipse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须在 Eclipse 中注册 Tomcat 服务器(
Window -> Preferences
,然后选择Server -> Runtime Environments
)。此后,您将能够直接从 Eclipse 部署您的项目。You have to register your Tomcat server in Eclipse (
Window -> Preferences
and then selectServer -> Runtime Environments
). After this you will be able to deploy your projects directly from Eclipse.您不需要安装 Tomcat。只需解压它并从
bin
目录中的startap.sh
或(在 Windows 上为startup.bat
)启动即可。您也可以将其安装为 Windows 服务或 unix 守护进程,请参阅文档: http ://tomcat.apache.org/tomcat-7.0-doc/setup.html
You do not need to install Tomcat. Just unpack it and start with the
startap.sh
or (startup.bat
on windows) which is in thebin
directory.Also you can install it as a windows service or unix daemon, refer to the docs: http://tomcat.apache.org/tomcat-7.0-doc/setup.html