zoukankan      html  css  js  c++  java
  • Tomcat中更改网站根目录和默认页的配置

    1.tomcat原来的默认根目录是http://localhost:8080,如果想修改访问的根目录,可以这样:

    找到tomcat的server.xml(在conf目录下),找到:

    <Host name="localhost" appBase="webapps"
           unpackWARs="true" autoDeploy="true"
           xmlValidation="false" xmlNamespaceAware="false"></Host>

    </Host>前插入:

    <Context path="" docBase="根目录" debug="0"/>
    然后重启tomcat
     

    2.tomcat的web.xml(在conf目录下),在该文件中找到

        <welcome-file-list>
            <welcome-file>index.html</welcome-file>
            <welcome-file>index.htm</welcome-file>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>

     

    这是tomcat默认的3个文件,当你输入指定路径后,tomcat会自动查找这3个页面。如果你想让tomcat自动找到自己的页面,比如main.jsp。可以修改上面信息为:

        <welcome-file-list>
            <welcome-file>main.jsp</welcome-file>
            <welcome-file>index.html</welcome-file>
            <welcome-file>index.htm</welcome-file>
            <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>

  • 相关阅读:
    存储过程
    数据库中的锁
    数据库事务
    三大范式
    IOC(一)
    rabbitmq部署
    配置SQLServer2012,允许远程连接
    6种常见的Git错误以及解决的办法
    灵活使用Win+R快捷键提高工作效率
    sql 创建视图常用的几种sql函数
  • 原文地址:https://www.cnblogs.com/ax7399/p/4926195.html
Copyright © 2011-2022 走看看