I am new to jsf and want to know about the clear difference between jsf, rich/prime/ice faces.
In jsf we create pages with .jsp extension and write java code in the backing beans.
But how exactly all "faces" are different and related to jsf.
|
I am new to jsf and want to know about the clear difference between jsf, rich/prime/ice faces. In jsf we create pages with .jsp extension and write java code in the backing beans. But how exactly all "faces" are different and related to jsf. |
||||
|
I think if you put it very simply . ref : Source JSF is a request-driven MVC web framework for constructing user interfaces using components. And PrimeFaces/RichFaces/IceFaces are components/JSF libraries that you can use on top of JSF
|
||||
|
|
|
Well, not really. Also a note - any kind of |
|||||||||||
|
|
Prime, Rich and ice faces are a bundle of components you can use in your jsf pages. If you google "primefaces showcase" you get a showcase of all components available in primefaces. In stead of just using the simple standard jsf components you can use the ones from prime, rich or ice or another library. A component can be example: a table with sorting, or a calendar input. Using these librarys will make it easier to develop rich applications. |
|||||||||
|
.jspwas used majorly with earlier versions of jsf 1.x , since jsf2.x we are more commonly using.xhtml(Facelets) as extension. – Mukul Goel Nov 19 '12 at 8:26