我已经复印了样品。在Tomcat的webapps目录下,我可以访问localhost:8080。

Tomcat如何部署,需要在浏览器中打开吗?如何访问该应用程序?


当前回答

请执行以下步骤:

停止Tomcat 右键点击项目,点击“清洁和构建” 转到你的项目目录和Dist文件夹内,你会得到你复制到tomcat上的war文件 webApp目录 启动tomcat 自动战争文件提取和运行您的项目

其他回答

您可以从http://localhost:8080/sample访问您的应用程序

war文件的部署或重新部署在默认情况下是自动的——在复制/覆盖文件示例之后。War,检查你的webapps文件夹中提取的文件夹示例。

如果不能正常打开,请检查日志文件(例如tomcat/logs/catalina.out),查看是否存在部署问题。

你只需要把war文件放在webapps中,然后启动你的服务器。

它将被部署。

否则,你也可以使用tomcat管理器在webfront上远程上传和部署你的战争。

In addition to the ways already mentioned (dropping the war-file directly into the webapps-directory), if you have the Tomcat Manager -application installed, you can deploy war-files via browser too. To get to the manager, browse to the root of the server (in your case, localhost:8080), select "Tomcat Manager" (at this point, you need to know username and password for a Tomcat-user with "manager"-role, the users are defined in tomcat-users.xml in the conf-directory of the tomcat-installation). From the opening page, scroll downwards until you see the "Deploy"-part of the page, where you can click "browse" to select a WAR file to deploy from your local machine. After you've selected the file, click deploy. After a while the manager should inform you that the application has been deployed (and if everything went well, started).

以下是来自Tomcat 7文档页面的更长的操作说明和其他说明。

如果你在linux中使用apt-get安装了tomcat7,那么将你的应用部署到/var/lib/tomcat7/webapps/

eg.

sudo service tomcat7 stop

mvn clean package
sudo cp target/DestroyTheWorldWithPeace.war /var/lib/tomcat7/webapps/
#you might also want to make sure war file has permission (`777` not just `+x`)
sudo service tomcat7 start

另外,继续跟踪tomcat日志,以便您可以验证应用程序实际上正在与tomcat和平共处。

tail -f /var/lib/tomcat7/logs/catalina.out

部署的应用程序应该出现在http://172.16.35.155:8080/manager/html中

应用程序名称进入tomcat部署URL的上下文中, 如。http://localhost applicationName。 如果您的应用程序名称很简单,那么它应该是http://localhost:8080/sample。

默认情况下,Port是8080,但是如果你想改变它,或者想知道tomcat运行的端口,只需到<tomcat-apache-dir>/conf/server.xml中的server.xml文件,在那里你可以找到Port和change。 如。<连接器端口="8080" redirectPort="8443" connectionTimeout="20000" protocol="HTTP/1.1"/>

如果出现任何错误,检查日志文件(例如<tomcat-apache-dir>/logs/catalina.out)