step1 :进入 tomcat->conf>sever.xml 文件中,在</Host> 和 </Engine> 之间添加下列这段代码。
<Host name="域名(例如www.baidu.com)” appBase="项目的真实路径名(例如:D:\project\IDEAProject\summer)">
<Context path=""(此处不写说明是缺省web运用) docBase=“项目的真实路径名(例如:D:\project\IDEAProject\summer\src\main\webapp)”
</Host>
具体操作如图:
step2 :进入你项目的 WEB-INF->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>
这段代码放在<web-app></web-app>之间。
step3:重启tomcat,就可以输入网址访问成功了 ,如下面这个页面。
注:如何是本地通过网址访问,还需做以下操作。
在C:\Windows\System32\drivers\etc\hosts
修改hosts文件即可以修改www.baidu.com 映射到127.0.0.1