Я обновляю веб-приложение Spring Boot MVC Java до версии 2.2.2.RELEASE. Я обнаружил загадку, касающуюся web.xml
и ее <welcome-file-list>
и <error-page>
разделов.
Мне не удалось найти хороший, современный пример, показывающий, как их настроить в WebMvcConfigurer
и DispatcherServletRegistrationBean
.
<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>
<error-page>
<error-code>404</error-code>
<location>/404.htm</location>
</error-page>