标签: java-ee jsf-2 composite-component
我们可以在#{cc.attrs.attributeName}
#{cc.attrs.attributeName}
我们如何在支持组件中访问此值?
答案 0 :(得分:6)
只有继承的 getAttributes()方法可以在任何方法中使用,该方法返回Map<String, Object>,其属性名称为map键,属性值为map值。< / p>
getAttributes()
Map<String, Object>
Bar bar = (Bar) getAttributes().get("bar"); // ...