自定义jsf taglib的自动完成

时间:2012-10-30 10:23:06

标签: eclipse jsf autocomplete taglib

我希望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(仅举例)相反,当我在xhtml文件中使用包含此taglib定义的依赖项时,我在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 +空格,我什么也没得到。

我的lib被定义为我的项目的依赖项,就像omnifaces ...

一样

omnifaces pom.xml我没有看到什么特别的东西。我该怎么办?

1 个答案:

答案 0 :(得分:2)

至少适用于Eclipse 2.7.2 / Indigo。

检查Trinidad实现后发现,它还需要一个.tld文件,其中包含与{{.tld文件夹相同的内容(不是1:1相同的内容,请参阅下面的WEB-INF格式).taglib.xml文件1}}。

命名.tld - &gt; mytaglib.taglib.xml - &gt; mytaglib.tld

tld内容应如下所示 - 仅供参考的示例 - 您必须填写所有内容:

<taglib 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-jsptaglibrary_2_1.xsd" version="2.1">

      <display-name>'free text'</display-name>    
      <tlib-version>1.0.0</tlib-version>
      <short-name>'match with name preceding .taglib.xml'</short-name>
      <uri>'your url'</uri>

       <tag>
          <description>
          </description>

          <name>'tag name'</name>
          <body-content></body-content>
          <attribute>
            <description></description>
            <name></name>
            <required></required>
            <deferred-value/>
          </attribute>
       </tag>
    </taglib>