I am new to JSF. So far I have encountered several names JSF, Visual Web JSF, Facelets. What is the difference between them? What do I need to get started with JSF?
Thanks!
Bart Kummel
author
Ranch Hand
Joined: Nov 30, 2007
Posts: 81
posted
0
JSF = JavaServer Faces. This is the standard, part of the Java EE spec. There are several implementations of the standard, like Mojarra (the Sun Reference Implementation (RI)) and MyFaces core.
Facelets. JSF uses JSP as default view technology. But since JSP was never designed to be used with JSF, this is a sub optimal solution. Facelets is an alternative view technology that is designed to be used with JSF. You should definitively take a look at Facelets. In my opinion you should choose Facelets instead of JSP for every new project. There's a tutorial on Facelets on the IBM developerworks website.
You will come across more names related to JSF, most names will be of additional component sets, like Trinidad, Tobago, Tomahawk and many others.
I just want to know if I want the user interface more user friendly (more component), is GWT-Ext a good choice than JSF?
peter tong
Ranch Hand
Joined: Mar 15, 2008
Posts: 234
posted
0
Why apache myFaces projects divided into Trinidad, Tobago, Tomahawk? not grouped into one project? Trinidad layout manager seems attractive, but its demo has exception and cannot function.
Originally posted by peter tong: Why apache myFaces projects divided into Trinidad, Tobago, Tomahawk? not grouped into one project? Trinidad layout manager seems attractive, but its demo has exception and cannot function.
myfaces strictly follows the specifications while tomahawk extends the functionality(means it goes beyond the specifications ).
MyFaces projects are each distinct products. The core myfaces project provides JSF Core (no surprise). Tomahawk provides some useful improvements, such as the sortable, pageable dataTable control and a pop-up calendar.
Trindidad is an open-source implementation of the ADF tag set initially created by Oracle. Or maybe that's Tobago. I can't keep them straight.
Customer surveys are for companies who didn't pay proper attention to begin with.