我希望 eclipse(juno 或更早版本)建议完成我的自定义 taglib。
所以,我写了一个 .taglib.xml 文件,其代码是:
<?xml version="1.0" encoding="UTF-8"?>
<facelet-taglib id="sc"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facelettaglibrary_2_0.xsd"
version="2.0"
>
<namespace>http://www.senat.fr/taglib/sencommons</namespace>
<tag>
<description>
<![CDATA[
blah blah blah
]]>
</description>
<tag-name>senDateYearBegEnd</tag-name>
<component>
<component-type>fr.senat.faces.validators.SenDateYearBegEnd</component-type>
</component>
<attribute>
<description>
<![CDATA[
Identifiant unique.
]]>
</description>
<name>id</name>
<required>false</required>
<type>java.lang.String</type>
</attribute>
[...]
</tag>
</facelet-taglib>
此 .taglib.xml 文件位于 META-INF 目录中
示例标签是omnifaces ValidateMultiple 的自制版本。
然而,与omnifaces(只是一个例子)相反,当我使用包含这个taglib定义的依赖项在xhtml文件中使用这个lib时,我在eclipse中没有完成。
例子 :
<html lang="fr"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:composite="http://java.sun.com/jsf/composite"
xmlns:p="http://primefaces.org/ui"
xmlns:sen="http://java.sun.com/jsf/composite/sen"
xmlns:fn="http://java.sun.com/jsp/jstl/functions"
xmlns:sf="http://www.senat.fr/taglib/senfunctions"
xmlns:sc="http://www.senat.fr/taglib/sencommons"
xmlns:o="http://omnifaces.org/ui"
xmlns:of="http://omnifaces.org/functions">
如果我输入
<o:
然后按 CTRL+空格,我得到了标签的建议,然后是属性。
如果我输入
<sc:
然后按CTRL+空格,我什么也没有。
我的库被定义为我的项目的依赖项,就像omnifaces一样......
我在omnifaces pom.xml中没有看到什么特别之处。我应该怎么办?