Hello World
后加入 PrimeFaces 到 JSF 项目 ,你就可以开始使用命名空间页面使用它:
xmlns:p="http://primefaces.org/ui"
或者,对于 PrimeFaces Mobile:
xmlns:p="http://primefaces.org/mobile"
这个例子应该呈现一个微调器:
<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>