gpt4 book ai didi

jsf - 使用 JSF 时 PrimeFaces taglib 的问题

转载 作者:行者123 更新时间:2023-12-05 00:03:14 26 4
gpt4 key购买 nike

我下载了 primefaces-3.0.M1.jar 文件并将其添加到我的项目中。
然后,我将这段代码添加到我的 JSP 页面:

<%@ taglib uri="http://primefaces.prime.com.tr/ui" prefix="p" %>

但它给出了错误:

Can not find the tag library descriptor for "http://primefaces.prime.com.tr/ui"

谁能指导我如何克服这个问题?

最佳答案

在primefaces论坛有some comments Primefaces 2.x 及更高版本不能与 JSP 一起使用。请改用 Facelets。

使用 primefaces 的 facelet 页面如下所示:

    <?xml version='1.0' encoding='UTF-8' ?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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:p="http://primefaces.prime.com.tr/ui">
<h:head>
... put your header info here
</h:ead>
<h:body>
.. put your content here
</h:body>
</html>

从jsp转facelets还有一些需要注意的地方。我想你开始阅读了some tutorials或者这个 related question and answers .

关于jsf - 使用 JSF 时 PrimeFaces taglib 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5645719/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com