Файл в web.xml загружается неправильно - PullRequest
0 голосов
/ 14 октября 2018

У меня проблема в том, что мой файл index.html загружается неправильно.Я получаю 404 ошибки.Но если я загружаю страницу отдельно по пути, он работает нормально.

[Errors in Chrome[1]

    <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
  <display-name>jsptest</display-name>
  <welcome-file-list>
    <welcome-file>Restaurant UI/index.html</welcome-file>

  </welcome-file-list>
</web-app>
...