tomahawk の selectManyCheckbox を使用しようとしていますが、機能しません。Web アプリケーションで次のメッセージが表示されます。
警告: ページ /resources/components/tabs/abaEdicaoFuncoesFuncionario.xhtml は名前空間http://myfaces.apache.org/tomahawkを宣言し、タグ t:selectManyCheckbox を使用しますが、名前空間に関連付けられた TagLibrary はありません。
ここでselectManyCheckboxを使用しています:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:t="http://myfaces.apache.org/tomahawk">
<ui:component>
<h:panelGroup layout="block" styleClass="hrgi-div-form clearfix tamanho-aba-cadastro">
<t:selectManyCheckbox id="selectFuncoes" value="#{funcionario.funcoes}" layoutWidth="2">
<f:selectItems value="#{carregadorFuncoesFuncionario.itens}" />
</t:selectManyCheckbox>
</h:panelGroup>
</ui:component>
</html>
このようにweb.xmlを構成しました:
<filter>
<filter-name>MyFacesExtensionsFilter</filter-name>
<filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
<init-param>
<param-name>uploadMaxFileSize</param-name>
<param-value>20m</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<servlet-name>Faces Servlet</servlet-name>
</filter-mapping>
<filter-mapping>
<filter-name>MyFacesExtensionsFilter</filter-name>
<url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
</filter-mapping>
Tomahawk 1.1.11、myfaces 2.1.6、および primefaces 2.1.1 を使用していますが、どうすれば解決できますか?