开发者

Getting the error "No library found for this namespace"

I am using Netbeans6.8 and trying to build a simple project with JSF2 and Primefaces.

Placed the jars jsf-impl-2.0.3.jar,jstl-1.0.2.jar, jsf-api-2.0.3.jar, primefaces-2.2.1.jar in the lib folder and I get this error in my NetBeans editor "No library found for this namespace"

My code for the login.xhtml page is as below.

<html xmlns="http://www.开发者_JAVA技巧w3c.org/1999/xhtml" 
    xmlns:f="http://java.sun.com/jsf/core" 
    xmlns:h="http://java.sun.com/jsf/html" 
    xmlns:p="http://primefaces.prime.com.tr/ui"> 
<h:head> 
    <link type="text/css" rel="stylesheet" href="themes/bluesky/skin.css" /> 
</h:head> 
<h:body> 
   .....

Can anyone help me like what might be the reason I am getting this error.

I had my faces-config.xml placed properly.


Your default xmlns namespace is wrong. It should point to www.w3.org, not www.w3c.org.

Fix it accordingly:

<html xmlns="http://www.w3.org/1999/xhtml" 
     ...
>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜