【问题标题】:pages/index.xhtml Not Found in ExternalContext as a Resource [duplicate]pages/index.xhtml 在 ExternalContext 中找不到作为资源 [重复]
【发布时间】:2016-02-10 12:59:04
【问题描述】:

我开发了一个简单的项目。我使用 JSF + Spring 框架。 我的 JSF Web 应用程序显示以下错误:

HTTP 状态 404 - /pages/index.xhtml 在 ExternalContext 中找不到作为资源

我的目录结构:

-src

--main

---webapp

----WEB-INF

-----pages

------index.xhtml

我的 web.xml

     <!-- Spring Context Configuration' s Path definition -->
      <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>
      /WEB-INF/config/applicationContext.xml
      </param-value>
   </context-param>
    <!-- Add Support for Spring -->
    <listener>
        <listener-class>    org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <listener>
        <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
    </listener>

    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</param-value>
    </context-param>

    <!-- Welcome page -->
    <welcome-file-list>
        <welcome-file>pages/index.xhtml</welcome-file>
    </welcome-file-list>

    <!-- JSF Mapping -->
    <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>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.xhtml</url-pattern>
    </servlet-mapping>

谢谢你:)

【问题讨论】:

  • &lt;url-pattern&gt;*.xhtml&lt;/url-pattern&gt;替换&lt;url-pattern&gt;/faces/*&lt;/url-pattern&gt;
  • Geinmachi 不起作用。

标签: java spring jsf jsf-2


【解决方案1】:

将pages文件夹放到webapp文件夹中

【讨论】:

    猜你喜欢
    • 2013-11-11
    • 2016-12-25
    • 1970-01-01
    • 1970-01-01
    • 2013-07-30
    • 1970-01-01
    • 2017-08-11
    • 2012-10-20
    • 2011-10-09
    相关资源
    最近更新 更多