如何在Spring-MVC和JSF混合Web应用程序中设置JSF欢迎文件

时间:2013-09-23 08:06:31

标签: jsf spring-mvc primefaces welcome-file

我正在开发一个将Spring MVC 3.1.1和Primefaces 3.4.2混合在一起的Web项目。 Spring MVC用于提供REST服务(使用URL注释),PrimeFaces用于用户界面。很自然地,我有两个组件的配置文件。

这是我的问题:

index.xhtml已在web.xml中设置为欢迎文件,但我无法通过http://localhost:8080/SampleWebApplication/

访问主页

但我可以通过http://localhost:8080/SampleWebApplication/index.xhtml

访问主页

我想要实现的是我想将index.xhtml文件设置为项目的欢迎文件,这样当用户输入http://localhost:8080/SampleWebApplication/时,必须将用户定向到欢迎页面。

这是我的web.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

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

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
        </param-value>
    </context-param>
    <context-param>
        <param-name>primefaces.THEME</param-name>
        <param-value>cupertino</param-value>
    </context-param>

    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/config/applicationContext.xml</param-value>
        </init-param>
        <load-on-startup>2</load-on-startup>
    </servlet>

    <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>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.xhtml</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            11
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>index.xhtml</welcome-file>
    </welcome-file-list>
    <error-page> 
        <error-code>404</error-code> 
        <location>/error.jsp</location> 
    </error-page>
    <error-page> 
        <error-code>500</error-code> 
        <location>/error.jsp</location> 
    </error-page>
</web-app>

1 个答案:

答案 0 :(得分:4)

/的欢迎文件请求与映射在/上的Spring MVC servlet相匹配,因此永远不会访问映射在*.xhtml上的JSF servlet。

您需要在更具体的URL模式上映射Spring MVC servlet。例如。 /rest/*/api/*或任何文件夹涵盖所有这些REST服务资源。完成后,JSF servlet将被命中。