1

我使用 PrettyFaces 作为 Pretty URL 但我遇到 PrettyFaces 的第一个问题:我在 pretty-config.xml 中的映射

     <url-mapping id="home">
  <pattern value="/" />
  <view-id>/faces/index.jsf</view-id>
  </url-mapping>

我在服务器 url http://localhost/myproject上部署时有一个文件 index.xhtml 它没有找到 index.jsf 发生了什么?

漂亮面孔的 web.xml 中的映射

<!-- PrettyFaces-->

<filter>
    <filter-name>Pretty Filter</filter-name>
    <filter-class>com.ocpsoft.pretty.PrettyFilter</filter-class>
</filter>

<filter-mapping>
 <filter-name>Pretty Filter</filter-name>
 <url-pattern>/*</url-pattern>
 <dispatcher>FORWARD</dispatcher>
 <dispatcher>REQUEST</dispatcher>
 <dispatcher>ERROR</dispatcher>
</filter-mapping>





<!-- End PrettyFaces-->

GlassFish 问题消息

HTTP Status 404 - /index.jsf not found

type Status report

message/index.jsf not found

descriptionThe requested resource (/index.jsf not found) is not available.
4

1 回答 1

1

index.jsf文件不存在。将其放在项目的根目录中 (http://localhost/myproject/index.jsf)。

于 2010-10-15T22:46:20.780 回答