0

http://localhost:8081/ReportGeneratorJSF/ 访问com.sun.faces.context.FacesFileNotFoundException时出现以下异常:/login.xhtml Not Found in ExternalContext as a Resource

我正在使用 JSF 2.0

我在 WEB-INF 文件夹中创建了一个 login.xhtml,该文件夹使用 header.xhtml 和 footer.xhtml 模板,使用 basictemplate.xhtml

// 登录.xhtml

<ui:composition template="/WEB-INF/template/basictemplate.xhtml">
...
textboxs and submit button
...
</ui:composition>

// 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_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>ReportGeneratorJSF</display-name>

    <welcome-file-list>
        <welcome-file>faces/login.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>
</web-app>

您能否提供解决方案。

4

1 回答 1

1

您的文件有问题,您需要像这样放置它们:

WEB-INF
- faces-config.xml
- web.xml
login.xhtml
header.xhtml
footer.xhtml
...
于 2013-04-13T07:15:22.467 回答