vote up 3 vote down star
1

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,

flag

64% accept rate
Why do you have interest on JSF? There are lot of good frameworks out there. – Madhu Sep 12 at 15:24
1  
I'm interested because JSF is part of the Java Enterprise Edition stack - may as well know the standard. – Brabster Sep 12 at 19:43

8 Answers

vote up 4 vote down check

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.

link|flag
vote up 3 vote down

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).

link|flag
vote up 2 vote down

I recomend javapassion.com as best place for beginners to Java and related technology. Here is JSF course

link|flag
vote up 1 vote down

I recommend using Netbeans IDE for JSF development. It will help you get started quickly. This is one of the many tutorials available.

link|flag
Thanks for the link, I have been meaning to start Java Web development, and this is definitely going to help kick start it. Though I have not used Netbeans - but don't think it will be hard to learn. – Helen Neely Aug 27 at 7:48
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Here is a good link to several tutorials: tutorials

link|flag
vote up 0 vote down

This is probably the best, fastest guide I've found: http://blogs.steeplesoft.com/bootstrapping-a-jsf-2-project/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.