在JSF中按类型查找组件

时间:2015-02-17 17:26:10

标签: jsf jsf-2 uicomponents

我的问题与此Get all hidden input fields in JSF dynamically有关,但它与我想要使用JSF而不是纯HTML的不一样,并假设我在.xhtml中有以下内容文件:

<h:inputHidden id="name1" value="SomeValue1"/>
<h:inputHidden id="name2" value="SomeValue2"/>

我开发了一个小代码,我试图动态获取所有h:inputHidden标签并将其值打印到控制台,但问题是我无法找到如何使每个动态变为动态的方法。在我的代码中,我应该知道id形式如果我想迭代uicomponents,我如何迭代组件树中的所有UIComponent? (我试过UIViewRoot#getChildren(),但我只得到了第一个孩子。)

以下是代码段:

// formId is the id of my form
List<UIComponent> components = FacesContext.getCurrentInstance().getViewRoot().findComponent("formId").getChildren();
// A List of UIComponent where I am adding my Hidden Inputs
List<UIComponent> hiddenComponents = new ArrayList<UIComponent>();

for (UIComponent component : components) {

    // using the hidden inputs type in JSF: HtmlInputHidden
    if (component instanceof HtmlInputHidden) {
        hiddenComponents.add(component);
    }

}

for (UIComponent component : hiddenComponents) {

    // Printing the hidden inputs values for demonstration purposes
    System.out.println(((HtmlInputHidden)component).getValue());

}

1 个答案:

答案 0 :(得分:9)

你还需要迭代孩子的孩子和他们的孩子,等等。你看,它是一个组件

这是一个实用程序方法的启动片段,它使用tail recursion完全执行:

public static <C extends UIComponent> void findChildrenByType(UIComponent parent, List<C> found, Class<C> type) {
    for (UIComponent child : parent.getChildren()) {
        if (type.isAssignableFrom(child.getClass())) {
            found.add(type.cast(child));
        }

        findChildrenByType(child, found, type);
    }
}

以下是您可以使用它的方法:

UIForm form = (UIForm) FacesContext.getCurrentInstance().getViewRoot().findComponent("formId");
List<HtmlInputHidden> hiddenComponents = new ArrayList<>();
findChildrenByType(form, hiddenComponents, HtmlInputHidden.class);

for (HtmlInputHidden hidden : hiddenComponents) {
    System.out.println(hidden.getValue());
}

或者,更好的是,使用UIComponent#visitTree()使用visitor pattern。主要区别在于它还迭代迭代组件,如<ui:repeat><h:dataTable>,并为每次迭代恢复子状态。否则,如果在此组件中包含<h:inputHidden>,则最终不会获得任何值。

FacesContext context = FacesContext.getCurrentInstance();
List<Object> hiddenComponentValues = new ArrayList<>();
context.getViewRoot().findComponent("formId").visitTree(VisitContext.createVisitContext(context), new VisitCallback() {
    @Override
    public VisitResult visit(VisitContext visitContext, UIComponent component) {
        if (component instanceof HtmlInputHidden) {
            hiddenComponentValues.add(((HtmlInputHidden) component).getValue());
            return VisitResult.COMPLETE;
        } else {
            return VisitResult.ACCEPT;
        }
    }
});

for (Object hiddenComponentValue : hiddenComponentValues) {
    System.out.println(hiddenComponentValue);
}

另见:

毕竟,如果有必要在<ui:repeat>内部将它们绑定到bean属性可能是最容易的:

<h:inputHidden id="name1" value="#{bean.name1}"/>
<h:inputHidden id="name2" value="#{bean.name2}"/>