美文网首页
web.xml基本配置

web.xml基本配置

作者: 桔里桔气 | 来源:发表于2019-10-26 15:53 被阅读0次
<?xml version="1.0" encoding="UTF-8"?>
<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"
  metadata-complete="false">  <!-- true 不扫描注解 false扫描注解 -->
  <!--  3.0以后才有absolute-ordering,用来扫描jar包;为空,表示不扫描任何架包,提升启动速度  -->
  <absolute-ordering></absolute-ordering>
 
  <display-name>Web_Test</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

相关文章

网友评论

      本文标题:web.xml基本配置

      本文链接:https://www.haomeiwen.com/subject/ivxuvctx.html