0

JSFビューを表示する前にいくつかのセッション変数を検証するサーブレットフィルターがあります。handleNavigation(...)メソッドを使用してBeanでナビゲーションルールが呼び出されたときに、フィルターが呼び出されない場合があります。私は何かが足りないのですか?どんな助けでもいただければ幸いです。

これがweb.xmlです

<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd"
         version="2.5">

    <display-name>JSF</display-name>
    <description>
        JSF
    </description>
    <filter>
        <filter-name>myFilter</filter-name>
        <filter-class>myFilterClassPath</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>myFilter</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>INCLUDE</dispatcher>
        <dispatcher>ERROR</dispatcher>
    </filter-mapping>

    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
        <servlet-name>appServlet</servlet-name>
        <servlet-class>pathtoAppServletClass</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.xhtml</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>

    <!-- Welcome File List -->
    <welcome-file-list>
        <welcome-file>welcome.xhtml</welcome-file>
    </welcome-file-list>
</web-app>

ナビゲーションルールはfaces-config.xmlです。

<navigation-rule>
        <navigation-case>
            <from-outcome>nextPage</from-outcome>
            <to-view-id>/nextPage.xhtml</to-view-id>
        </navigation-case>
    </navigation-rule>

そして、これがコードBeanの呼び出しです。

FacesContext context = FacesContext.getCurrentInstance();
      context.getApplication().getNavigationHandler().handleNavigation(context, null, "nextPage");

お時間をいただきありがとうございます!

4

1 に答える 1

1

フィルターも必要になるとnextPage.xhtml思いますか?JSFナビゲーションは、リクエスト、転送、またはインクルードを実行しません。まったく同じリクエスト内に新しいビューを作成し、それをレンダリングします。

まったく新しいリクエストを作成する必要がある場合は、ExternalContext#redirect()代わりに電話してください。

externalContext.redirect(externalContext.getRequestContextPath() + "/nextPage.xhtml");

または、実際にアクションメソッド内にいる場合は、ナビゲーション結果を?faces-redirect=true次のように返します。

public String submit() {
    // ...

    return "/nextPage.xhtml?faces-redirect=true";
}

または、代わりに、具体的な機能要件に応じて、のViewHandler代わりにを使用して、にFilterフックできるようにしますcreateView()

于 2012-04-23T22:27:38.407 に答える