0

ウェルカムファイルを使用してJavaEEの例をサーバーに配布したい:404 http://kitchensink-justexample.rhcloud.com/を見つけましたが、 http://kitchensink-justexample.rhcloud.com/index.jsf に アクセスできます。 web.xmlにwelcome-file-listを記述しますが、機能しないようです。

私の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>

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

 <!-- Tell the context which URLs to process with JSF -->
 <servlet-mapping>
  <servlet-name>Faces Servlet</servlet-name>
  <url-pattern>*.jsf</url-pattern>
 </servlet-mapping>


 <welcome-file-list>

  <welcome-file>index.jsf</welcome-file>
 </welcome-file-list>
</web-app>

welcom-file-listを機能させる方法。

4

1 に答える 1

0

私は以前にjsfを扱ったことがありません。しかし、この動作の理由は、URL パターンを *.jsf として指定していて、最初に試みた URL がこのパターンを満たしていないためだと思います。

于 2012-11-12T09:17:52.913 に答える