First page Back Continue Last page Graphics

What Is JavaServer Faces (JSF)?


Notes:

JavaServer Faces

JavaServer Faces (JSF) is a component-based architecture, which means that instead of working with markup, the developer works with UI components, similar to Swing. Thus JSF simplifies Web development. The developer need not be concerned with UI implementations, and is able to use declarative definition, making it more robust and extensible.

JSF is a server-side UI technology, as opposed to a client-side UI technology such as ADF Swing. Requests are sent from the Web browser or other client to the server, where JSF translates the request into an event that the application logic can process. JSF also ensures that every widget that is defined on the server is correctly displayed on the client.

JSF technology establishes the standard for building server-side user interfaces, managing their state, handling events and input validation, defining page navigation, and supporting internationalization and accessibility. JSF hides the complexities of UI management, simplifying the process of building Web UIs.

For example, consider what is required to develop a simple order form using traditional Web technologies: HTML for your presentation, state management over HTTP, JavaScript for input validation and behavior, and a Servlet on the server side to process the order. In JSF, the developer is not concerned with these underlying technologies, but considers a field or a button on a form as a component in terms of a traditional UI. A button is as you think of it in the