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

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


当前回答

请执行以下步骤:

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

其他回答

步骤1。首先到tomcat webapps文件夹并粘贴它

步骤2。进入tomcat->bin文件夹,单击startup.bat启动tomcat

步骤3。去浏览器写localhost:端口/项目名等。Localhost:8080/pos(这里我的tomcat运行在端口8080上)

做……

应用程序名称进入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)

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文档页面的更长的操作说明和其他说明。

为了在tomcat上部署war文件, 请遵循以下步骤:

停止tomcat。powershell - >服务。msc->OK->Apache Tomcat 8.5->stop(在左侧)。

把。war文件放在E:\Tomcat_Installation\webapps文件夹中,也就是Put。战争(。战争只是一个例子)

启动tomcat后(启动tomcat powershell->服务)。msc - >确定- > Apache Tomcat 8.5 - >开始)

你会在E:\Tomcat_Installation\webapps**put**中得到一个文件夹

通过这种方式,您可以在Apache Tomcat中部署war文件。

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

它将被部署。

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