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

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


当前回答

我按照下面链接的说明,它对我有用。 http://www.coderanch.com/t/487178/Tomcat/war-file-show-load

停止Tomcat 删除“tomcat/logs”目录下的所有日志和“tomcat/conf/Catalina/localhost”目录下的所有文件 从tomact/webapps中删除war文件和它创建的目录(如果有的话) 启动Tomcat 在查看日志时,再次将war文件复制到webapps目录

在此之后,请密切关注catalina.xxxx-xx-xx.log以找出问题。

其他回答

请执行以下步骤:

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

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

它将被部署。

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

有两种方法:

您可以进行热部署(热部署意味着在服务器运行/启动时进行部署)。 或者您可以进行冷部署(冷部署意味着在服务器停止时进行部署)。

只需使用tomcat管理控制台进行控制台部署,或者简单地复制并粘贴应用程序到服务器tomcat_home目录的webapp文件夹中。

注意:如果您的war文件大小超过52 MB(默认配置值), 你需要在你的webapp文件夹的Manager应用程序的web.xml文件中做两个小的修改(在安装服务器时,默认由Apache tomcat提供Manager应用程序)。

Go to the web.xml of the manager application (for instance it could be under /tomcat7/webapps/manager/WEB-INF/web.xml. Increase the max-file-size and max-request-size values in web.xml file: <multipart-config> <!– 50MB max –> <max-file-size>52428800</max-file-size> <max-request-size>52428800</max-request-size> <file-size-threshold>0</file-size-threshold> </multipart-config> Increase the size by putting the values for <max-file-size> and <max-request-size> according to your requirement.

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

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

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

做……

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