JavaServer Faces 2.2
The JavaServer Faces 2.2 Specification was developed under JSR 344. This section gives you only an overview of improvements in the API. The complete document specification (for more information) can be downloaded from http://jcp.org/aboutJava/communityprocess/final/jsr344/index.html.
What is JavaServer Faces?
JavaServer Faces (JSF) is a component-based architecture with a set of standard UI widgets and helper tags (convertDateTime
, inputText
, buttons
, table
, converter
, inputFile
, inputSecret
, selectOneRadio
). It was released after the Servlet and JSP Specification in order to facilitate the development and maintenance of component-oriented web applications. In this light, it offers developers the ability to:
Create web applications that meet the design pattern of MVC(Model-View-Controller). This design pattern allows a clear separation of the presentation layer from the other layers and facilitates the maintenance of the whole application.
Create different types of components...