虚拟目录
方式一:(不建议使用,因为需要重启服务器)
虚拟目录映射:
<Context path="..." docBase="..."/>
docBase
:代表的是应用的真实路径。path
:网络访问的虚拟目录名
注:需要重启服务器。
方式二:
新建访问名.xml
文件,文件名就代表应用的虚拟目录名。
将文件放在Tomcat服务器的\conf\Catalina\localhost
目录下
<?xml version="1.0" encoding="utf-8"?>
<Context docBase="..."/>
访问:http://localhost:8080/访问名
默认端口
把server.xml中
<Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
浏览器http默认端口:80
默认应用
默认应用:把配置的虚拟目录的配置文件名改为ROOT.xml即可。
默认主页
修改当前应用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>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>