多年以来,我的第一个问题,谢谢大家和stackoverflow;-)
我为JSF2编写了一个新的组件,并使用它包含其他模板。 它对我来说很完美。
<cc:interface>
<cc:attribute name="src" type="java.lang.String" required="true"/>
<cc:attribute name="addOption" type="java.util.List"/>
</cc:interface>
<cc:implementation>
<cc:insertChildren />
<ui:include src="#{BeanAnything.convert(cc.attrs.src, cc.attrs.addOption)}" />
</cc:implementation>
但是我无法通过intellij或netbeans中的“ strg + space”或任何其他将使用的自动完成功能来完成src参数。
应该像src参数上的ui:include
一样使用。
有什么想法吗?
那就是我仅希望通过自己的组件gg:include
实现的目标
See Example