JSF 2.0 FileNotFoundException



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

我正在使用JSF 2.0

我已经在WEB-INF文件夹中创建了一个login.xhtml,它使用的模板是header.xhtml和footer.xhtml,使用basictemplate.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>

能否提供解决方案

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

WEB-INF
- faces-config.xml
- web.xml
login.xhtml
header.xhtml
footer.xhtml
...

相关内容

  • 没有找到相关文章

最新更新