ホーム.xhtmlに適切にリダイレクトするようにアプリのウェルカムファイルを適切に設定するのに問題があります。SO内で検索しようとしましたが、機能しないようです。申し訳ありません。
私のweb.xmlには、これらがあります
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
私のindex.jspにはこれがあります
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<head>
<title>My App</title>
</head>
<body>
<c:redirect url="/faces/pages/home.xhtml"></c:redirect>
</body>
</html>
アプリにアクセスするとき:
http://localhost:8080/myApp
何も得られず、リダイレクトされません。
何が間違っている可能性がありますか?