我無法正確設置我的應用程序文件表示歡迎妥善重定向到我home.xhtml 我試圖內SO搜索,但我似乎無法使它work..sorry ..JSF歡迎文件沒有正確重定向
在我的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
我沒有收到任何東西,也沒有重定向。
什麼可能是錯的?
看看[這裏](http://stackoverflow.com/questions/7416369/redirecting-using-jstl-core-redirect#answer-7416537)! ,我認爲這是相同類型的問題。 – tartak