0

http://localhost:8081/ReportGeneratorJSF/ com.sun.faces.context.FacesFileNotFoundException: /login.xhtml Not Found in ExternalContext as a Resourceにアクセスすると、以下の例外が発生します

私はJSF 2.0を使用しています

basictemplate.xhtmlを使用してheader.xhtmlとfooter.xhtmlのテンプレートを使用しているWEB-INFフォルダー内にlogin.xhtmlを作成しました

// login.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 に答える