JSF2定制组件,带有本地文件路径的参数自动补全

时间:2018-09-05 17:42:53

标签: intellij-idea jsf-2 filepath custom-component uiinclude

多年以来,我的第一个问题,谢谢大家和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

0 个答案:

没有答案