2

我正在开发一个将 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>
4

1 回答 1

4

欢迎文件请求/与映射到的 Spring MVC servlet 匹配/,因此永远不会碰到映射到的 JSF servlet *.xhtml

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

于 2013-09-23T11:29:02.927 回答