Does anyone know of a good way to get started with JSF for a servlets/JSP person?
I'm interested but not sure where to start!
Thanks,
|
1
|
|||||||
|
|
|
Core JavaServer Faces By David Geary and Cay Horstmann book will be easy for a begginner to start JSF.I used eclipse as the IDE and Maven as the server. |
||
|
|
|
|
Chapter 10 of the Java EE 5 Tutorial gives some good nuts'n'bolts information on how to work with the core JSF API. The API & specifications are also useful (see version 1.2). Both Netbeans and Eclipse (and many commercial IDEs) provide JSF support with WYSIWYG page editors. If you're doing servlet/JSP development, then presumably you already have a JEE5 server and tooling. If you wish to use JSF with a previous version of J2EE, you'll need to install the libraries yourself. If want to use Tomcat, you'll need to download a JSF implementation (e.g. MyFaces or Mojarra). |
||
|
|
|
|
I recomend javapassion.com as best place for beginners to Java and related technology. Here is JSF course |
||
|
|
|
|
I recommend using Netbeans IDE for JSF development. It will help you get started quickly. This is one of the many tutorials available. |
||
|
|
|
I would like to recommend exadel.com's JSF kickstart tutorial which you can find at http://exadel.com/tutorial/jsf/jsftutorial-kickstart.html I would also recommend getting the book Core JavaServer Faces second edition. Third edition of this book is scheduled to release 2009/10/16 if you wanna wait for it. |
||
|
|
|
|
Be aware that the way that the JEE Tutorial presents JSF development is completely different from how the NetBeans IDE actually DOES JSF development. For example, the tutorial focuses on binding to bean values (like String name), whereas NB binds to actual controls (TextControl name). They're both "JSF", but completely different idioms for development. |
||
|
|
|
|
Here is a good link to several tutorials: tutorials |
||
|
|
|
|
This is probably the best, fastest guide I've found: http://blogs.steeplesoft.com/bootstrapping-a-jsf-2-project/ |
||
|
|