如何修改tomcat的主页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何修改tomcat的主页相关的知识,希望对你有一定的参考价值。
软件是apache tomcat installer(文件版本是5.5.25.0),jdk-1_5_0-windows-i586.exe,mysql For Windows V5.2 Alpha.zip和MySQL-Front_Setup.zip,用的是win2003系统,安装的论坛是:凌云论坛LyBBS v7.0 Build 20070129,希望高手能指点啦
参考技术A 启动tomcat之后,在猫页上有这么一段话:As you may have guessed by now, this is the default Tomcat home page. It can be found on the local filesystem at:
$CATALINA_HOME/webapps/ROOT/index.html
这就说明,无论你怎么折腾你自己的web.xml文件,对不起,tomcat只认它自己的web.xml定义的welcome页面。
而<welcome-file-list>标签上的这段注释:
<!-- If you define welcome files in your own application's web.xml -->
<!-- deployment descriptor, that list *replaces* the list configured -->
<!-- here, so be sure that you include any of the default values that -->
<!-- you wish to include.
-->
修改过程
1.不要碰conf目录下的那个web.xml文件,让它老死在那里吧。
2.把原来的ROOT目录清空,里面什么都不要留。删掉或者改名随便你怎么弄都成。只要清空就好。
3.发布你自己的项目到ROOT目录下,用war包发布或者用直接拷贝的都一个效果。保证index.html/index.htm/index.jsp其中一个存在于ROOT目录下。
4.删除%CATALINA%/work目录下的一切。我就是没有清理这个目录,导致http://localhost:8080永远都是那只猫~~~~郁闷
5.通知服务商重起tomcat。
参考资料:http://www.xunlei6.org.cn/xlabout/250.html
修改TOMCAT默认主页
1、默认的项目都在目录:apache-tomcat-9.0.0.M22\\webapps\\ROOT下
2、该目录下有一个index.jsp是tomcat的默认主页,如下
3、现在需要修改这个默认主页,改成自己的主页
(1)修改配置文件server.xml(在conf目录下),找到如下代码:
<Host name="172.18.0.5" appBase="webapps" unpackWARs="true" autoDeploy="true"> <Context path="" docBase="C:\\apache-tomcat-9.0.0.M22\\webapps\\ROOT"/>
修改第三行为<Context path="" docBase="C:\\apache-tomcat-9.0.0.M22\\webapps\\ROOT\\1" debug="0"/>
其中C:\\apache-tomcat-9.0.0.M22\\webapps\\ROOT\\1就是你想设置的网站根目录,我这里的根目录就是1
(2)修改配置文件web.xml,找到如下代码:
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
在第一行添加上指定文件,如<welcome-file>work_detail.html</welcome-file>,注意:work_detail.html是目录1下的文件
<welcome-file-list> <welcome-file>work_detail.html</welcome-file> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> </welcome-file-list
4、重启tomcat,访问172.18.0.5:8080
OK,访问的根目录就是刚刚设置的目录文件了
以上是关于如何修改tomcat的主页的主要内容,如果未能解决你的问题,请参考以下文章
tomcat修改默认主页, 前段项目放到tomcat下,浏览器输入ip加端口后,直接到项目主页
免配置环境变量使用Tomcat+设置项目主页路径为http://localhost:8080+修改tomcat端口号