0
我測試JSF組件,但我得到的NullPointerException :(問題的代碼是:的getAttributes()獲得( 「的attributeName」)在UIComponent構造返回null
@FacesComponent(value="mycomponent0")
public class MyComponent extends HtmlPanelGroup{
MyComponent(){
String a0=this.getAttributes().get("attr0");
}
}
的taglib.xml的標記包含attr0屬性和標籤的用法是:
<abc:mycomponent attr0="helloworld"></abc:mycomponent>
所以我的問題是什麼原因造成的問題,以及如何處理它
感謝
?
閱讀BalusC答案在這裏,爲解釋: https://stackoverflow.com/questions/30404268/cannot-get-custom-component -attribute從 - 支持bean – Pazura