I am having trouble properly setting my apps welcome file to properly redirect to my home.xhtml I tried to search within SO but I cant seem to make it work..sorry..
In my web.xml, I have these
<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>
My index.jsp has this
<%@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>
When I access my app:
http://localhost:8080/myApp
I am getting nothing and it is not redirecting.
What could be wrong?