Spring MVC 3.1.1 と Primefaces 3.4.2 の両方が混在する Web プロジェクトに取り組んでいます。Spring MVC は (URL アノテーションを使用して) REST サービスを提供するために使用され、PrimeFaces はユーザー インターフェイスに使用されます。したがって、当然のことながら、これらのコンポーネントの両方に対して 1 つの構成ファイルがあります。
これが私の問題です:
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>