我正在尝试覆盖 Tomcat(版本 7)的默认欢迎文件列表,正如其 conf/web.xml 通过以下列形式声明“欢迎文件列表”标签所建议的那样
<welcome-file-list>
<welcome-file>estore.html</welcome-file>
<welcome-file>estore.htm</welcome-file>
<welcome-file>estore.jsp</welcome-file>
</welcome-file-list>
在我的应用程序的 web.xml 中,但我收到这样的错误:
HTTP 状态 500 - java.lang.ClassNotFoundException: org.apache.jsp.estore_jsp
有任何想法吗?谢谢你。