1

オートコンプリート機能を備えた「汎用」ダイアログを数日間機能させようとしています。結局のところ、私は MethodExpression を「間違った方法」で作成していました。というわけで、ここに文書化しておこうと思いました。

繰り返しますが、MethodExpression を動的に作成し、Property に保存して、JSTL Template または JSF Page で使用する必要があります。

例えば:

// Template
<c:forEach items="#{property.subItems}" var="subitem">
  <ui:include src="editor.xhtml">
    <ui:param name="autocompleteMethod" value="#{subitem.autocompMethod}" />
  </ui:include>
</c:forEach>

// editor.xhtml
// We're using RichFaces (unfortunately), but this is just an example
<rich:autocomplete mode="cachedAjax" minChars="2"
      autocompleteMethod="#{autocompleteMethod}"
/>
4

1 に答える 1

3

http://javaevangelist.blogspot.co.at/2012/10/jsf-2x-tip-of-day-programmatically_20.htmlで解決策を見つけました

public static MethodExpression createMethodExpression(String methodExpression, Class<?> expectedReturnType, Class<?>[] expectedParamTypes) {
    FacesContext context = FacesContext.getCurrentInstance();
    return context.getApplication().getExpressionFactory()
            .createMethodExpression(context.getELContext(), methodExpression, expectedReturnType, expectedParamTypes);
}

その後、MethodExpression を作成してプロパティに格納できます。RichFaces オートコンプリートの場合、署名は次のとおりです。List<String> autocomplete(String prefix)

@SuppressWarnings("rawtypes") // Generics use type erasure
Class<List> retType = List.class;
Class<?>[] paramTypes = {String.class};
MethodExpression autocompleteMethod = createMethodExpression("#{myBean.myAutocomplete}", retType, paramTypes);
// In the questions example, we'd need to set a property here:
this.autocompMethod = autocompleteMethod;

次に、適切なゲッターを用意します。

MethodExpression getAutocompMethod() {
    return this.autocompMethod;
}
于 2016-08-01T16:11:50.993 に答える