JSF 上的 Primefaces taglib 错误
我尝试在我的项目中实施 PrimeFaces。我下载 primefaces-3.0.M2.jar 并添加到构建路径,然后将此标记库添加到我的代码中:
<%@ taglib uri="http://primefaces.prime.com.tr/ui" prefix="p"%>
我收到此错误:
Can not find the tag library descriptor for "http://primefaces.prime.com.tr/ui"
有人可以帮助我吗?
I tried to implement PrimeFaces to my project. I download primefaces-3.0.M2.jar and added to build path then I added this taglib to my code:
<%@ taglib uri="http://primefaces.prime.com.tr/ui" prefix="p"%>
I got this error:
Can not find the tag library descriptor for "http://primefaces.prime.com.tr/ui"
Is there anyone to help me out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
PrimeFaces 2.2+ 不支持 JSP 视图。
PrimeFaces 2.2+ does not support JSP view.
Primefaces 不再支持 JSP 风格的语法吗?
您应该使用 Facelets 和标准语法来声明 taglib:
记住,JSF 不是 JSP!
Does Primefaces support JSP-style syntax anymore?
You should use Facelets and the standard syntax for declaring taglibs:
Remember, JSF is not JSP!
你好呀?将必要的库添加到您的项目中,并将以下内容添加到视图中的 html 标记
xmlns:p="http://primefaces.org/ui"
您现在可以使用 p 前缀来引用素颜! :) 希望它会有所帮助!
Hi there? Add the necessary libraries to your project and add the following to your the html tag in your view
xmlns:p="http://primefaces.org/ui"
you can now use the p prefix to reference primefaces! :) hope it'll help!