Tomcat和Weblogic部署纯html文件过程解析

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Tomcat和Weblogic部署纯html文件过程解析

贾树丙   2020-09-24 我要评论

本文着重讲解了Tomcat和Weblogic部署纯html文件过程解析,文中通过代码实例讲解的非常细致,对大家的工作和学习具有一定的参考学习价值,欢迎大家阅读和收藏

1、首先纯html文件,得有一个入口 index.html

2、Tomcat是不需要指定web.xml的,因为即使你的文件里没有web.xml,也会读取conf 目录下的web.xml,在这个文件里边指定了index.html的入口

Tomcat的话只要将原文件部署到 webapps\ 目录下,或者在\conf\Catalina\localhost 目录下新建xml文件,指向html页面

<?xml version='1.0' encoding='utf-8'?>
  <Context docBase="C:\Users\jiashubing\Desktop\dist" 
  reloadable="false" privileged="true" antiResourceLocking="false" antiJARLocking="false">    
</Context>

3、如果是Weblogic的话, 可以直接发布war包,但是如果想要发布纯html文件,必须要新建WEB-INF\web.xml 文件,否则无安装部署

web.xml 文件的写法也很简单,注意格式,不要有中文字符

<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>

 <!--或者写成这种形式-->
 <!--<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>

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们