what is JSF in JAVA?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • komathi043
    New Member
    • Apr 2014
    • 5

    what is JSF in JAVA?

    explain with simple words and with some realtime examples also.

    thankQ in advance
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    why JSF ???

    JSF stands for JavaServer Faces.

    And it is
    ...A Java specification for building component-based user interfaces for web applications.
    Please research this topic a bit.
    Maybe try creating something using the technology too... and then if you have any specific questions about what you are doing ask here and the experts will be more than happy to give you a hand with it.

    Comment

    • rajujrk
      New Member
      • Aug 2008
      • 107

      #3
      JavaServer Faces (JSF) 2.0, is an MVC web framework which focus on simplifies building user interfaces (comes with 100+ ready UI tags) for Java web application and make reusable UI component easy to implement. Unlike JSF 1.x, almost everything is declared in faces-config.xml, with JSF 2.0, you are allowed to use annotation to declare navigating, managed bean or CDI bean, which make your development easier and faster.

      Developers of various skill levels can quickly build web applications by:

      1. Assembling reusable UI components in a page
      2. Connecting these components to an application data source
      3. Wiring client-generated events to server-side event handlers

      Comment

      Working...