@Evgeny_13

Почему вылетает ошибка The requested resource is not available при попытке перейти на html-страницу с index.html(веб-проект на Java, Tomcat 9)?

Здравствуйте! Пытаюсь разобраться в написании сайта на Java, но при первой попытке просто соединить две html-страницы выскакивает ошибка 404 The requested resource is not available. Подскажите как это исправить!! Вот структура проекта!
25f5156bd5f7444e9ccd88ae7d64f711.png
  • Вопрос задан
  • 5355 просмотров
Решения вопроса 1
sergey-gornostaev
@sergey-gornostaev Куратор тега Java
Седой и строгий
В Java™ Servlet Specification version 3.1 написано:
A special directory exists within the application hierarchy named WEB-INF. This directory contains all things related to the application that aren’t in the document root of the application. The WEB-INF node is not part of the public document tree of the application. No file contained in the WEB-INF directory may be served directly to a client by the container. However, the contents of the WEB-INF directory are visible to servlet code using the getResource and getResourceAsStream method calls on the ServletContext, and may be exposed using the RequestDispatcher calls.

Не надо туда складывать html-файлы.
Ответ написан
Комментировать
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы