0

シナリオ 1: FriendlyURL が「/requestform/servicerequest」の場合requestProcessorBean.userRequestVO == null、セッションを無効にして「/web/pds/login」ページにリダイレクトします。

シナリオ 2: FriendlyURL が「/requestform/servicerequest」の場合、requestProcessorBean.userRequestVO != null「serviceRequest.xhtml」ページにリダイレクトします。

JSF フェーズ リスナーを使用してシナリオ 1 を実装する方法を知りたいです。シナリオ 1 を次のように実装しました: requestForm.xhtml:

<?xml version="1.0" encoding="UTF-8"?>
<f:view xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets">
    <h:head>
    </h:head>
    <h:body>
        <h:outputFormat rendered="#{lookupBean.friendlyURL == '/requestform/servicerequest' and (requestProcessorBean.userRequestVO != null)}">
            <ui:include src="serviceRequest.xhtml" />
        </h:outputFormat>
    </h:body>
</f:view>

Liferay 6.0 と JSF 2.0 を使用しています。

ありがとう

4

1 に答える 1

0

条件付きリダイレクトにフェーズ リスナーを使用することはお勧めしません。代わりに、<f:event type="preRenderView"/>. ただし、何らかの理由でフェーズリスナーの使用が制限されている場合、実装は次のようになります。

  1. PhaseListener を次のように定義します

    /*we're defining the PhaseListener as a ManagedBean so
     * we can inject other beans into it 
     */
    @ManagedBean(name = "thePhaseListener")
    @RequestScoped
    public class TestPhaseListener implements PhaseListener {
    
    
       @ManagedProperty(value = "#{requestProcessorBean}")
       transient private RequestProcessorBean requestProcessorBean;
    
       @ManagedProperty(value = "#{lookupBean}")
       transient private LookupBean lookupBean;
    
       @Override
       public void afterPhase(PhaseEvent event) {
          //throw new UnsupportedOperationException("Not supported yet.");
       }
    
       @Override
       public void beforePhase(PhaseEvent event) {
    
           try {
    
              if (lookupBean.getFriendlyURL.equals("/requestform/servicerequest") && (requestProcessorBean.getUserRequestVO() == null)) {
                event.getFacesContext().getExternalContext().redirect("/web/pds/login");
               }
            } catch (IOException ex) {
              Logger.getLogger(TestPhaseListener.class.getName()).log(Level.SEVERE, null, ex);
            }
         }
    
       @Override
       public PhaseId getPhaseId() {
          return PhaseId.RESTORE_VIEW; // The RESTORE_VIEW phase is the first in the lifecycle of a JSF view
       }
    }
    
  2. 希望するページで、以下のタグを使用して新しい PhaseListener を登録します。

    <f:phaseListener type="com.you.TestPhaseListener"/>
    

この投稿の冒頭で述べたように、このアプローチは不必要にぎこちなく、ほとんど達成するのに労力がかかりすぎて、IMO、フェーズリスナーの悪用です。

于 2013-03-31T04:34:35.750 に答える