2

我在 Jboss 7.0.2“Arc”中出现错误,spring webflow 2.3.0.RELEASE with richfaces 4.0.0.Final(Myfaces 2.1.1):

12:34:19,729 严重 [org.apache.myfaces.renderkit.ErrorPageWriter] (http--127.0.0.1-8080-2) 发生异常:javax.faces.FacesException:java.io.FileNotFoundException:/sections/login/在 ExternalContext 中找不到 header.xhtml 作为资源。

当我运行我的 login.xhtml 页面时:

<ui:composition template="/WEB-INF/flows/template/default.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich">

<ui:define name="windowTitle">
#{msgs.loginTitle}
</ui:define>

<ui:define name="heading">
<ui:include src="/sections/login/header.xhtml"/>
</ui:define>

<ui:define name="sidebarLeft">
<ui:include src="/sections/login/sidebarLeft.xhtml"/>
</ui:define>

<ui:define name="content">
<h:form>
   <h:panelGrid columns="2">
      #{msgs.namePrompt}
      <h:inputText id="name" value="#{user.name}"/>
      #{msgs.passwordPrompt}
      <h:inputSecret id="password" value="#{user.password}"/>
   </h:panelGrid>
   <p>
      <h:commandButton value="#{msgs.loginButtonText}"
                       action="planetarium"/>
   </p>
</h:form>
</ui:define>

header.xhtml 的代码是:

  <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"> 
  <!--  <head><title>IGNORED</title></head> -->
  <body>
  <ui:composition>
     <div class="header">
        #{msgs.loginHeading}
     </div>
  </ui:composition>
  </body>
  </html>

结构文件是这样的:

WEB-INF/flows/inscripcion
    inscripcion-flow.xhtml 
    inscripcion.xhtml    
    login.xhtml

WEB-INF/flows/sections/login
    header.xhtml
    sidebarLeft.xhtml

WEB-INF/flows/template
    template.xhtml

为什么会出现这个错误?,我附上了我的 Jboss 提示

https://rapidshare.com/files/817066879/log12.zip 谢谢。

4

1 回答 1

1

您似乎已将其放入WEB-INF/flows/sections/login/header.xhtml. 相应地修复src以匹配此。

<ui:include src="/WEB-INF/flows/sections/login/header.xhtml"/>
于 2011-09-30T15:52:09.793 回答