我不确定在复合组件中处理方法表达式的“正确”方法。
我的复合使用带有操作方法的支持类。这些执行一些默认操作或委托给复合用户作为属性传递的操作方法:
使用页面:
<my:component action="#{myBean.actionMethod}" />
组合:
<cc:interface componentType="mycomponentType">
<cc:attribute name="action" method-signature="java.lang.String action()" required="false" />
</cc:interface>
<cc:implementation>
<h:commandButton value="submit" action="#{cc.componentAction}" />
</cc:implementation>
支持课程:
@FacesComponent("mycomponentType")
public class UIMyComponent extends UINamingContainer {
public String action() {
String outcome = "";
ValueExpression ve = getValueExpression("action");
String expression = ve.getExpressionString();
FacesContext facesContext = FacesContext.getCurrentInstance();
Application application = facesContext.getApplication();
ELContext elContext = facesContext.getELContext();
ExpressionFactory expressionFactory = application .getExpressionFactory();
MethodExpression methodExpression = expressionFactory.createMethodExpression(elContext, expression, String.class, new Class[0]);
outcome = (String) methodExpression.invoke(elContext, new Object[0]);
if (outcome.equals("whatever")) {
// set another outcome
}
return outcome;
}
}
上面的代码按预期工作,但我发现它相当庞大,它创建了一个ValueExpression来从声明的“action”属性中检索方法表达式。
UIComponentBase提供getValueExpression("attributeName")
,但MethodExpressions没有类似内容。
所以我的问题是,如果有更好的方法来评估复合组件中声明为MethodExpressions
的属性而不是上面的代码。
Thx
答案 0 :(得分:4)
将其作为属性而不是值表达式。
所以,而不是
ValueExpression ve = getValueExpression("action");
DO
MethodExpression me = (MethodExpression) getAttribute("action");