0
得到以下例外訪問http://localhost:8081/ReportGeneratorJSF/
com.sun.faces.context.FacesFileNotFoundException時:/login.xhtml不在的ExternalContext實測值作爲資源JSF 2.0 FileNotFoundException異常
我使用JSF 2.0
我有創建內部WEB-INF文件夾中的login.xhtml其使用basictemplate.xhtml
// login.xhtml
<ui:composition template="/WEB-INF/template/basictemplate.xhtml">
...
textboxs and submit button
...
</ui:composition>
使用header.xhtml和footer.xhtml的模板
// 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>
能否請您爲它提供的解決方案。
感謝您的幫助,它的工作。我犯了一個愚蠢的錯誤:( – Soheb
@Sheheb很高興它的幫助,你可以標記爲回答!:) –