如何在后备UIComponent中访问Composite Component属性值?

时间:2011-07-31 10:10:54

标签: java-ee jsf-2 composite-component

我们可以在#{cc.attrs.attributeName}

这样的实现中访问复合组件属性值(在界面部分中隐藏)

我们如何在支持组件中访问此值?

1 个答案:

答案 0 :(得分:6)

只有继承的 getAttributes()方法可以在任何方法中使用,该方法返回Map<String, Object>,其属性名称为map键,属性值为map值。< / p>

Bar bar = (Bar) getAttributes().get("bar");
// ...