我想使用名为'bar'的属性制作自定义组件'foo'。
在JSF 2.2中,我可以在没有任何taglib文件的情况下在Java中创建Component类:
@FacesComponent(tagName = "foo", createTag = true)
public class Foo {
@WhatShouldIUseHere(required = true, description = "example attribute")
public Object getBar() { ... }
}
但是我的bar属性有问题。是否存在任何注释,我可以在taglib xml中设置所需的描述和其他属性?
答案 0 :(得分:0)
没有任何注释可以做你想做的事。
如果您还不知道如何向自定义JSF组件添加属性,可以在此处查看:Adding custom attribute (HTML5) support to JSF 2.0 UIInput component