首页 > 解决方案 > 如何在 Tomcat 8 中部署 HTML 文件和 Web 应用程序?

问题描述

我有一个在 Tomcat 8 上运行的 Java Web 应用程序。该应用程序在localhost:8080. 我想要做的是,将一个额外的 html 文件部署到 tomcat 并使其在localhost:8080/path. 我怎样才能做到这一点?

标签: web-servicestomcatwebtomcat8

解决方案


/path一种解决方案是在仅服务于该 html 文件的上下文路径上简单地部署一个简单的新 Web 应用程序。这样您就不需要接触现有的ROOT应用程序:

创建一个apache-tomcat/webApps/path/WEB-INF/web.xml

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
                      http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  version="3.1"
  metadata-complete="true">

  <display-name>Additional HTML File</display-name>
  <description>
     Additional HTML File
  </description>
</web-app>

创建一个 apache-tomcat/webApps/path/index.html :

<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
    <h1>Additional HTML File!!!2</h1>
</body>
</html>

启动tomcat,访问http://localhost:8080/path

这将显示 index.html 文件。


推荐阅读