JSF Tutorial
JSF Useful Resources
Selected Reading
- JSF - Internationalization
- JSF - Expression Language
- JSF - Spring Integration
- JSF - JDBC Integration
- JSF - Event Handling
- JSF - Ajax
- JSF - Composite Components
- JSF - DataTable
- JSF - Validator Tags
- JSF - Convertor Tags
- JSF - Facelet Tags
- JSF - Basic Tags
- JSF - Page Navigation
- JSF - Managed Beans
- JSF - First Application
- JSF - Life Cycle
- JSF - Architecture
- JSF - Environment Setup
- JSF - Overview
- JSF - Home
JSF Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
JSF - Facelet Tags
JSF - Facelets Tags
JSF provides special tags to create common layout for a web apppcation called facelets tags. These tags provide flexibipty to manage common parts of multiple pages at one place.
For these tags, you need to use the following namespaces of URI in html node.
<html xmlns = "http://www.w3.org/1999/xhtml" xmlns:ui = "http://java.sun.com/jsf/facelets">
Following are important Facelets Tags in JSF 2.0.
S.No | Tag & Description |
---|---|
1 | We ll demonstrate how to use templates using the following tags <ui:insert> <ui:define> <ui:include> <ui:composition> |
2 | We ll demonstrate how to pass parameters to a template file using the following tag <ui:param> |
3 | We ll demonstrate how to create custom tags |
4 | We ll demonstrate capabipty to remove JSF code from generated HTML page |