作业帮 > 综合 > 作业

我的 web 程序出现 “is required and cannot be removed from the serv

来源:学生作业帮 编辑:搜搜做题作业网作业帮 分类:综合作业 时间:2024/08/04 05:05:03
我的 web 程序出现 “is required and cannot be removed from the server”是什么原因呢
我的 web 程序出现 “is required and cannot be removed from the serv

那是因为web.xml的问题!
例如,我的项目里面没有index.jsp和default.jsp等下面六个类型的文件,但我的项目里面有Payroll/inputEmployee.jsp文件,就要这样注册清单文件!
否则出现404错误!

<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>Payroll/inputEmployee.jsp</welcome-file>