我正在尝试使用 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 我该如何解决?