An Introduction to JavaServer Faces (JSF) 8

 

 

 

What do we have in this session 8?

  1. Creating Template Client Files

  2. The greeting.xhtml File

 

 

 

Creating Template Client Files

 

Create template client files for the welcome and response pages. Name the template client file for the welcome page greeting.xhtml. For the response page, the file will be response.xhtml.

 

The greeting.xhtml File

 

  1. Press Ctrl-N (-N on Mac) to open the New File wizard. Select the JavaServer Faces category, and then select Facelets Template Client. Click Next.

 

Adding new facelets template client file to the existing JSF project

 

  1. Type in greeting for the file name.
  2. Click the Browse button next to the Template field, and then use the dialog that displays to navigate to the template.xhtml file you created in the previous section.

 

Choosing the new facelets template client file name and location

 

 

Selecting template.xhtml file as the template

 

 

 

 

 

 

Finishing the new facelets template client file creation

 

 

  1. Click Finish. The new greeting.xhtml template client file is generated and displays in the editor.
  2. Examine the markup. Note the content highlighted in bold.

 

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets">
 
    <body>
 
        <ui:composition template="./template.xhtml">
 
            <ui:define name="title">
                title
            </ui:define>
 
            <ui:define name="box">
                box
            </ui:define>
 
        </ui:composition>
 
    </body>
</html>

 

The following is the screenshot.

 

 

 

 

 

 

----------------------------------------------------------------------

The content of the new greeting.xhtml file

 

The template client file references a template using the <ui:composition> tag's template attribute. Because the template contains <ui:insert> tags for title and box, this template client contains <ui:define> tags for these two names. The content that you specify between the <ui:define> tags is what will be inserted into the template between the <ui:insert> tags of the corresponding name.

 

  1. Specify greeting as the title for the file. Make the following change in bold.

 

<ui:define name="title">

    Greeting

</ui:define>

 

  1. Switch to the index.xhtml file (press Ctrl-Tab) and copy the content that would normally appear in the grey square that displays in the rendered page. Then switch back to greeting.xhtml and paste it into the template client file.

 

The new greeting.xhtml source code taken from index.xhtml file

 

  1. Declare the JSF HTML tag library for the file. Place your cursor on any of the tags that are flagged with an error (any tag using the 'h' prefix), and press Ctrl-Space.

 

Declaring the JSF HTML tag library for the greeting.xhtml file

 

Then select the tag from the list of code completion suggestions. The tag library namespace is added to the file's <html> tag (shown in bold below), and the error indicators disappear.

 

 <html xmlns="http://www.w3.org/1999/xhtml"

      xmlns:ui="http://java.sun.com/jsf/facelets"

      xmlns:h="http://java.sun.com/jsf/html">

 

The JSF HTML tag library was added to the source code

 

If you place your cursor after the 'm' in <h:form> and press Ctrl-Space, the namespace is automatically added to the file. If only one logical option is available when pressing Ctrl-Space, it is immediately applied to the file. JSF tag libraries are automatically declared when invoking code completion on tags.

 

 

 

 

< JavaServer Faces (JSF) 7 | Java and Friends | JavaServer Faces (JSF) 9 >

 

 

 


JavaServer Faces 1 | JavaServer Faces 2 | JavaServer Faces 3 | JavaServer Faces 4 | JavaServer Faces 5 | JavaServer Faces 6 | JavaServer Faces 7 | JavaServer Faces 8 | JavaServer Faces 9 | Java and Friends