top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Explain JSF(Java Server Faces) architecture?

0 votes
307 views
Explain JSF(Java Server Faces) architecture?
posted Sep 21, 2017 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

JSF is developed based on the Model View Controller(MVC) pattern. The Model VIew Controller separates the business logic from presentation.

The JSF application contains:-

  • UI components represented as stateful objects on the server
  • Server-side helper classes
  • Validators, event handlers, and navigation handlers
  • Application configuration resource file for configuring application
    resources
  • JavaBeans components as models containing application-specific
    functionality and data
  • A custom tag library for representing event handlers and validators
  • A custom tag library for rendering UI components
    enter image description here
answer Sep 22, 2017 by Mantosh Dubey
...