运行JSF给我下载文件框

时间:2014-02-26 13:36:10

标签: eclipse jsf jboss

我在jboss Server 5.0上运行JSF Project,当它部署时,浏览器给我下载文件消息而不是显示xhtml内容

这是我的web.xml:

    <welcome-file-list>
    <welcome-file>index.xhtml</welcome-file>
  </welcome-file-list>
     <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>/faces/*</url-pattern>
      </servlet-mapping>

的index.xhtml:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:ui="http://java.sun.com/jsf/facelets"> 

<h:head></h:head> 
<body> 
<h1> Test</h1>
<h:form>
<h:inputText value="test"  />
</h:form>
</body> 
</html>

0 个答案:

没有答案