I have basic hello word example of Prime Faces.
I have created dynamic web project on eclipse.
I have downloaded primefaces-3.2.jar and put it to class path(WEBINF/Lib). Then I imported the namespace of Prime Faces to my page. However, It does not work.
<html xmlns="http://www.w3c.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 />
<p:editor></p:editor>
</h:body>
</html>
I change the page extention to xhtml from jsp. It works well. Thanks to everyone.