JSF 上的 Primefaces taglib 错误

发布于 2024-11-29 13:42:05 字数 318 浏览 0 评论 0原文

我尝试在我的项目中实施 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦亿 2024-12-06 13:42:05

PrimeFaces 2.2+ 不支持 JSP 视图。

PrimeFaces 2.2+ does not support JSP view.

泪之魂 2024-12-06 13:42:05

Primefaces 不再支持 JSP 风格的语法吗?

您应该使用 Facelets 和标准语法来声明 taglib:

<html xmlns="http://www.w3c.org/1999/xhtml"
 xmlns:h="http://java.sun.com/jsf/html"
 xmlns:p="http://primefaces.prime.com.tr/ui">
...

记住,JSF 不是 JSP!

Does Primefaces support JSP-style syntax anymore?

You should use Facelets and the standard syntax for declaring taglibs:

<html xmlns="http://www.w3c.org/1999/xhtml"
 xmlns:h="http://java.sun.com/jsf/html"
 xmlns:p="http://primefaces.prime.com.tr/ui">
...

Remember, JSF is not JSP!

许久 2024-12-06 13:42:05

你好呀?将必要的库添加到您的项目中,并将以下内容添加到视图中的 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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文