在web.xml文件中:
<welcome-file-list>
<welcome-file>/app/project/userLogin.jsp</welcome-file>
<welcome-file>/index.jsp</welcome-file>
</welcome-file-list>
其中/app/project/userLogin.jsp和/index.jsp是页面路径,这里可以设置多个页面,程序运行的时候会从第一个依次寻找,如果第一个存在就加载第一个页面为欢迎页,如果第一个不存在,就会依次寻找。