在netbean中找不到名称空间http://primefaces.prime.com.tr/ui的库如何设置名称空间?

时间:2015-05-21 11:16:51

标签: jsf primefaces xml-namespaces

我尝试过使用primeFace。 “xmlns:p =”http://primefaces.prime.com.tr/ui“这一行有错误。

如何解决这个问题。请显示所有步骤。

1 个答案:

答案 0 :(得分:2)

PrimeFaces的文档将此命名空间定义定义为JSF视图的最小集:

<html xmlns="http://www.w3.org/1999/xhtml"  
    xmlns:h="http://java.sun.com/jsf/html"  
    xmlns:f="http://java.sun.com/jsf/core"  
    xmlns:p="http://primefaces.org/ui">  

    <h:head>  

    </h:head>  

    <h:body>  

        <p:spinner />  

    </h:body>  
</html> 

参考:http://www.primefaces.org/gettingStarted

您的错误在网址中!它是www.primefaces.org而不是www.primefaces.com.tr