2017-04-12 36 views
0

我在所有的jsf頁面中都有相同的標準工具欄,其中包含保存,新建,搜索等操作,並且我正在尋找一種重構它的方法在一個xhtml頁面中並將其包含在每個頁面中,問題是每個頁面都有它自己的viewscoped managedbean,並且命令按鈕操作與每個頁面有關。用每個頁面的自定義邏輯重構一個常見的JSF工具條

每個managedbean實現下面的界面,表示動作

public interface ActionAbstract { 

public void search(ActionEvent actionEvent); 

public void newRecord(ActionEvent actionEvent); 

public void clear(ActionEvent actionEvent); 

public void remove(ActionEvent actionEvent); 

public void searchAdvanced(ActionEvent actionEvent); 

public void back(ActionEvent actionEvent); 

public void closePage(ActionEvent actionEvent); 

public void validate(ActionEvent actionEvent); 

public void duplicate(ActionEvent actionEvent); 

public void refresh(ActionEvent actionEvent); 

} 

託管Bean:

@ViewScoped 
@ManagedBean 
public class ExampleBean implements ActionAbstract 

工具欄XHTML:

<p:toolbar> 
<f:facet name="left"> 
    <p:commandButton title="New" update="@all" icon="fa fa-plus" actionListener="#{ExampleBean.newRecord}" process="@this" /> 
    <p:commandButton title="Search" update="@all" icon="fa fa-search" actionListener="#{ExampleBean.search}" rendered="#{ExampleBean.showTable}" 
         process="@this" /> 
    <p:commandButton title="Advanced Search" icon="fa fa-search-plus" actionListener="#{ExampleBean.searchAdvanced}" 
         rendered="#{ExampleBean.showTable}" process="@this" /> 
    <p:commandButton title="Clear" icon="fa fa-eraser" actionListener="#{ExampleBean.clear}" rendered="#{ExampleBean.showTable}" process="@this" /> 
    <p:commandButton title="Duplicate" icon="fa fa-copy" actionListener="#{ExampleBean.duplicate}" rendered="#{ExampleBean.showDetail}" 
         process="@this" /> 
    <p:commandButton title="Validate" icon="fa fa-check" actionListener="#{ExampleBean.validate}" rendered="#{ExampleBean.showDetail}" 
         process="@this" /> 
    <p:commandButton title="Remove" icon="fa fa-remove" actionListener="#{ExampleBean.remove}" rendered="#{ExampleBean.showDetail}" process="@this" /> 
    <p:commandButton title="Refresh" icon="fa fa-refresh" actionListener="#{ExampleBean.refresh}" process="@this" /> 
    <p:commandButton title="Back" update=":form" icon="fa fa-arrow-left" actionListener="#{ExampleBean.back}" rendered="#{ExampleBean.showDetail}" 
         process="@this" /> 
    <p:commandButton title="Close" icon="fa fa-sign-out" actionListener="#{ExampleBean.closePage}" process="@this" /> 

</f:facet> 

它possibl e重構它??? !!!非常感謝您的幫助。

回答

1

它絕對可以重構。這是一種情況,我喜歡構圖而不是繼承。你已經有了一個接口,所以你可以很容易地將它用作匿名類,並將它傳遞給一個複合組件。通過這種方法,您可以在同一頁面上擁有多個工具欄;不是你可能想要,但該技術可以應用於其他組件。那麼唯一的考慮是如果你傳遞你的Ajax屬性(更新/進程)和按鈕呈現的屬性,或者如果你讓它們成爲你接口的一部分(如果你讓它們成爲接口的一部分,那麼重命名它將是一個好主意)。

例如,工具欄界面

package jp.faces.test; 

public interface Toolbar { 
    public void newRecord(); 
} 

管Bean;我用延遲實例在吸氣劑對於本例

@ManagedBean 
@ViewScoped 
public class TestBean { 

private Toolbar toolbar = null; 

public Toolbar getToolbar(){   
    if(toolbar == null){ 
     toolbar = new Toolbar() {   
      @Override 
      public void newRecord() { 
      // custom bean action goes here 
     }; 
    } 
    return toolbar; 
} 

複合

<cc:interface> 
    <cc:attribute name="toolbar" type="jp.faces.test.Toolbar"/> 
</cc:interface> 

<cc:implementation> 
    <div id="#{cc.clientId}"> 
     <h:commandButton value="New" actionListener="#{cc.attrs.toolbar.newRecord}"/> 
    </div> 
</cc:implementation> 

的簡潔起見在一個頁面的facelet

<comp:toolbar bean="#{testBean.toolbar}"/> 
使用它
相關問題