如何在 servlet 3.0 的 web.xml-less 中定义<欢迎文件列表>和<错误页面>?
2022-09-01 10:47:19
我有现有的web应用程序,我想将其转换为无web.xml的servlet的3.0。我已经设法使它工作,但是Web中有2个标签.xml我仍然不知道Web.xml环境中的等效代码。
<welcome-file-list>
<welcome-file>/index.jsp</welcome-file>
</welcome-file-list>
<error-page>
<error-code>404</error-code>
<location>/pageNotFound</location>
</error-page>
任何帮助是值得赞赏的