Tag Library supports namespace: http://bootsfaces.net/ui, but no tag was defined for name: form

问题描述 投票:1回答:1

我正在使用JSF + Bootsfaces + Xhtml编写代码。当我尝试在我的代码中包含<b:form href="#">时,我收到以下错误:

javax.faces.view.facelets.TagException:/Internal_Pages/GoogleSearch.xhtml @ 43,41标签库支持命名空间:http://bootsfaces.net/ui,但没有为name:form定义标签

在Bootsfaces的网站上,使用情况就像这样显示,因为它看起来与我的不同;

<b:form>
  <b:selectBooleanCheckbox value="#{settingsBean.checkbox1}" caption="checkbox 1" label="Please decide" />
</b:form>

有人可以解释一下如何解决它吗?顺便说一句像<b:inputText这样的标签可以正常运行而不会出错。

jsf bootsfaces
1个回答
1
投票

表单组件从1.0开始存在,因此您必须更新版本或不能使用它。

© www.soinside.com 2019 - 2024. All rights reserved.