从index.jsp欢迎文件重定向到map.xhtml JSF页面

时间:2013-06-20 07:46:41

标签: jsf facelets welcome-file

我尝试在jboss7.1上运行我的第一个jsf2项目 我想从index.jsp重定向到map.xhtml 这就是我在我的index.jsp中尝试的,所有这些都没有用,请帮助

<%=response.sendRedirect("map.html")  %>
<%=response.sendRedirect("/map.html")  %>
<%=response.sendRedirect("map.xhtml")  %>
<%=response.sendRedirect("/map.xhtml")  %>
<%=response.sendRedirect("map.jsf")  %>
<%=response.sendRedirect("/map.jsf")  %>

这是我的faces-config.xml

   
<faces-config
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns     /javaee   /web-facesconfig_2_1.xsd"
version="2.1">

</faces-config>

这是我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee    /web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com    /xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>myproject</display-name>
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

1 个答案:

答案 0 :(得分:1)

不要这么做。

更改

<url-pattern>*.jsf</url-pattern>

<url-pattern>*.xhtml</url-pattern>

并更改

<welcome-file>index.jsp</welcome-file>

<welcome-file>map.xhtml</welcome-file>

这种方式map.xhtml成为欢迎文件,您现在可以停止摆弄.jsf等虚拟URL,作为奖励,您可以完全摆脱遗留的JSP文件。