tomcat配置根目录访问后,部署后第一次访问会出现tomcat的默认界面而非项目首页,而重启后会正常,这个原因是因为在配置文件中有如下配置,造成项目加载两次
<Host name&#61;"localhost" appBase&#61;"webapps"unpackWARs&#61;"true" autoDeploy&#61;"true"><Context path&#61;"/" docBase&#61;"myPrac" debug&#61;"0" reloadable&#61;"true"/>Host>
修改点&#xff1a;
1、把 appBase&#61;"webapps" 改为 appBase&#61;""
2、docBase&#61;"myPrac" 改为 docBase&#61;"webapps/myPrac"
3、reloadable改为reloadable&#61;"false" 或者删除 &#xff0c;默认就是false
<Host name&#61;"localhost" appBase&#61;""unpackWARs&#61;"true" autoDeploy&#61;"true"><Context path&#61;"/" docBase&#61;"webapps/myPrac" debug&#61;"0" />Host>
来源&#xff1a;https://blog.csdn.net/rimac/article/details/62417195