SpringJSFLogin请求的资源不可用

时间:2015-11-24 17:40:53

标签: spring maven jsf-2

在Maven和omniFaces的命名空间中添加新依赖项后,我的Spring Web Project(所有页面)被拒绝启动。我还没有对web.xml进行任何更改,但TomCat 8.0告诉我"请求的资源不可用"。 我使用JSF 2.0,我的所有页面都是.xhtml,存储在src / main / webapp文件夹中。 Maven更新,清理和安装没有任何结果。 在src / main中创建适当的SpringJSFLogin文件夹并没有帮助。

问题结果是与omniFaces 库有关 - 为什么它需要特殊的态度。如果有人能解释我如何解决这个问题,我将不胜感激。

提前致谢。

我的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"
         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>SpringJSFHello</display-name>

   <!--
        - Location of the XML file that defines the root application context.
        - Applied by ContextLoaderListener.
    -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring/application-config.xml</param-value>
    </context-param>

    <context-param>
        <param-name>facelets.SKIP_COMMENTS</param-name>
        <param-value>true</param-value>
    </context-param>

    <welcome-file-list>
        <welcome-file>Main.xhtml</welcome-file>
    </welcome-file-list>

    <!-- Spring listeners -->
    <listener>
        <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class>
    </listener>
    <listener>
        <listener-class> org.springframework.web.context.request.RequestContextListener</listener-class>
    </listener>

    <!-- Start JSF -->
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <!-- JSF URL mapping -->
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.xhtml</url-pattern>
    </servlet-mapping>

    <filter>
        <filter-name>encodingFilter</filter-name>
        <filter-class>   
            org.springframework.web.filter.CharacterEncodingFilter    
        </filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
        <init-param>
            <param-name>forceEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>encodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
</web-app>

Administrator-AddDish.xhtml的命名空间:

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:o="http://omnifaces.org/ui"
    xmlns:of="http://omnifaces.org/functions">

Screenshot of error displayed

0 个答案:

没有答案