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>