• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

why JSF?

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I dont know much about JSF. Can somebody explain the advantages of JSF?
 
Ranch Hand
Posts: 167
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Those are the good articles that expose the JSF benefits:

JavaServer Faces, Web Applications Made Easier By Mike Houghton
URL: http://javaboutique.internet.com/articles/JSF/

INTRODUCING JAVASERVER FACES TECHNOLOGY
URL: http://java.sun.com/developer/EJTechTips/2004/tt0324.html#2

All about Faces by Kito Mann
URL: http://www.cppsig.org/nycjava/All%20about%20Faces%20-%20NYPCUG%20-%2004-2004.pdf

You can find the other introduction material at the "Golden Collection for JSF Newbie" section on the http://www.jsfTutorials.net

--
Sergey
 
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
this is why ! Adds a a whole extra layer of Dynamics if you choose to use those features


this.reportResults = new HtmlPanelGrid();
List childeren = this.reportResults.getChildren();
childeren.clear();



if (record.getTestResultPositiveFlag().equals("T"))
{

HtmlOutputText reportResultItem = (HtmlOutputText)application.createComponent(HtmlOutputText.COMPONENT_TYPE);
reportResultItem.setValue("Positive");
childeren.add(reportResultItem);
testResults.add("Positive");
}

if (record.getTestResultNegativeFlag().equals("T"))
{
HtmlOutputText reportResultItem = (HtmlOutputText)application.createComponent(HtmlOutputText.COMPONENT_TYPE);
reportResultItem.setValue("Negative");
childeren.add(reportResultItem);
testResults.add("Negative");
}
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic