我尝试在我的项目中实现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"
有人能帮我吗?
PrimeFaces 2.2+不支持JSP视图
Primefaces是否支持jsp样式的语法?
你应该使用Facelets和标准语法来声明标签:
<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!
你好吗?将必要的库添加到项目中,并将以下内容添加到视图
中的html标记中 xmlns:p="http://primefaces.org/ui"
现在可以使用p前缀来引用主面了!:)希望对你有帮助!