1. First, the pure HTML file must have an entry index.html 2. Tomcat does not need to specify web.xml, because even if there is no web.xml in your file, it will read the web.xml in the conf directory, and the entry of index.html is specified in this file. For Tomcat, just deploy the original file to the webapps\ directory, or create a new xml file in the \conf\Catalina\localhost directory and point it to the html page <?xml version='1.0' encoding='utf-8'?> <Context docBase="C:\Users\jiashubing\Desktop\dist" reloadable="false" privileged="true" antiResourceLocking="false" antiJARLocking="false"> </Context> 3. If it is WebLogic, you can publish the war package directly, but if you want to publish a pure HTML file, you must create a new WEB-INF\web.xml file, otherwise there is no installation deployment The writing method of web.xml file is also very simple. Pay attention to the format and do not use Chinese characters. <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> <welcome-file-list> <welcome-file>index</welcome-file> </welcome-file-list> <!--Or write it in this form--> <!--<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>--> </web-app> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of the use of MySQL paradigm
>>: js to achieve simple accordion effect
This article shares the specific code for the WeC...
Table of contents Installation-free version of My...
Table of contents background Purpose Before split...
Content Detail Tags: <h1>~<h6>Title T...
Excel export always fails in the docker environme...
Using flex layout, if it is a nine-square grid, i...
Two problems that are easy to encounter when inst...
Use OSS to upload pictures or attachments in vue ...
What is it? Spring Boot is a sub-project of the S...
This article shares the specific code of JavaScri...
Table of contents Preface Configure yum source, e...
This article mainly introduces the implementation...
Table of contents Preface 1. The process of using...
1. IE browser mode Hack logo 1. CSS hack logo Copy...
Preface Tip: Here you can add the approximate con...