1.建立maven项目
2.选中创建的项目设置Artifacts
3.设置界面
4.配置Tomcat
5.pom.xml中加入以下代码
<packaging>war</packaging>
6.在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>
7.最终项目目录
9.启动tomcat查看是否成功