gpt4 book ai didi

jsf - UIComponent#getFamily() 是否可以返回 null?

转载 作者:行者123 更新时间:2023-12-01 11:04:19 26 4
gpt4 key购买 nike

我想知道 UIComponent#getFamily() 方法是否可以返回 null? Mojarra 2.1.3 在返回 null 时会抛出异常,但 MyFaces 2.1.3 不会。

组件真的需要家族吗?

最佳答案

I would like to know wether the method UIComponent.getFamily() may return null or not?

这在任何地方都没有明确记录。所以我认为这是对 spec 的一点疏忽。/javadoc .你可能想发布 issue向规范人员报告此事。


Does a component really need a family?

我总是指定它们,所以我从未见过您使用 Mojarra 时遇到的异常。如果您的组件比较独特,您可以考虑让它返回与组件类型(类名)相同的值,或者如果有更多相关组件,则返回组件的包名称。


What is the preferred way of implementing a component that has no renderer?

getRendererType() 上返回 null .你可以通过 setRendererType(null) 来准备在组件的构造函数中:

public MyComponent() {
setRendererType(null); // This component doesn't have an renderer.
}

关于jsf - UIComponent#getFamily() 是否可以返回 null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7610067/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com