<b:form>标签库支持命名空间:http://bootsfaces.net/ui,但没有定义标签名称:form
<b:form> Tag Library supports namespace: http://bootsfaces.net/ui, but no tag was defined for name: form
我正在使用 JSF + Bootsfaces + Xhtml 编写代码。当我尝试在我的代码中包含 <b:form href="#">
时,出现以下错误:
javax.faces.view.facelets.TagException:
/Internal_Pages/GoogleSearch.xhtml @43,21 Tag Library
supports namespace: http://bootsfaces.net/ui, but no tag was defined
for name: form
在Bootsfaces的网站上,用法是这样的,和我的好像没什么区别;
<b:form>
<b:selectBooleanCheckbox value="#{settingsBean.checkbox1}" caption="checkbox 1" label="Please decide" />
</b:form>
有人可以解释一下如何解决吗?顺便说一句,像 <b:inputText
这样的标签可以正常工作而不会出错。
form组件从1.0开始就存在,必须更新版本否则无法使用
我正在使用 JSF + Bootsfaces + Xhtml 编写代码。当我尝试在我的代码中包含 <b:form href="#">
时,出现以下错误:
javax.faces.view.facelets.TagException: /Internal_Pages/GoogleSearch.xhtml @43,21 Tag Library supports namespace: http://bootsfaces.net/ui, but no tag was defined for name: form
在Bootsfaces的网站上,用法是这样的,和我的好像没什么区别;
<b:form>
<b:selectBooleanCheckbox value="#{settingsBean.checkbox1}" caption="checkbox 1" label="Please decide" />
</b:form>
有人可以解释一下如何解决吗?顺便说一句,像 <b:inputText
这样的标签可以正常工作而不会出错。
form组件从1.0开始就存在,必须更新版本否则无法使用