Composite ComponentsJSF provides developer a powerful capability to define own custom components which can be used to render custom contents. Define Custom Component Defining a custom component in JSF is a two step process
Create a folder javatechnologycenter in resources folder and create a file loginComponent.xhtml in it Use composite namespace in html header.
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:composite="http://java.sun.com/jsf/composite" > ... </html> Step 1b: Use composite tags : loginComponent.xhtml Following table describes use of composite tags.
<composite:interface>
<composite:attribute name="usernameLabel" /> <composite:attribute name="usernameValue" /> </composite:interface> <composite:implementation> <h:form> #{cc.attrs.usernameLabel} : <h:inputText id="username" value="#{cc.attrs.usernameValue}" /> </h:form> Use Custom Component Using a custom component in JSF is a simple process
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets"> xmlns:tp="http://java.sun.com/jsf/composite/javatechnologycenter"> Step 2b: Use Custom Tag: home.xhtml and pass values
<h:form>
<tp:loginComponent usernameLabel="Enter User Name: " usernameValue="#{userData.name}" /> </h:form> Example Application Let us create a test JSF application to test the custom component in JSF.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:composite="http://java.sun.com/jsf/composite"> <composite:interface> <composite:attribute name="usernameLabel" /> <composite:attribute name="usernameValue" /> <composite:attribute name="passwordLabel" /> <composite:attribute name="passwordValue" /> <composite:attribute name="loginButtonLabel" /> <composite:attribute name="loginButtonAction" method-signature="java.lang.String login()" /> </composite:interface> <composite:implementation> <h:form> <h:message for="loginPanel" style="color:red;" /> <h:panelGrid columns="2" id="loginPanel"> #{cc.attrs.usernameLabel} : <h:inputText id="username" value="#{cc.attrs.usernameValue}" /> #{cc.attrs.passwordLabel} : <h:inputSecret id="password" value="#{cc.attrs.passwordValue}" /> </h:panelGrid> <h:commandButton action="#{cc.attrs.loginButtonAction}" value="#{cc.attrs.loginButtonLabel}"/> </h:form> </composite:implementation> </html> UserData.java
package com.javatechnologycenter.test;
import java.io.Serializable; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; @ManagedBean(name = "userData", eager = true) @SessionScoped public class UserData implements Serializable { private static final long serialVersionUID = 1L; private String name; private String password; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String login(){ return "result"; } } home.xhtml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:tp="http://java.sun.com/jsf/composite/javatechnologycenter"> <h:head> <title>JSF tutorial</title> </h:head> <h:body> <h2>Custom Component Example</h2> <h:form> <tp:loginComponent usernameLabel="Enter User Name: " usernameValue="#{userData.name}" passwordLabel="Enter Password: " passwordValue="#{userData.password}" loginButtonLabel="Login" loginButtonAction="#{userData.login}" /> </h:form> </h:body> </html> Once you are ready with all the changes done, let us compile and run the application as we did in JSF - First Application chapter. If everything is fine with your application, this will produce following result: |