Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML
 
 
Search All Tutorials

 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 
JSF
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

JSF validator Tag

                          

This tag is used to add and register the validator to the nearest parent component. Typically all applications requires filling some or more information in the page. So it will be better approach to find out the invalid information value or format as soon as possible to make it user friendly. So user can find out faults and correct it. JSF provides built-in validation rules. JSF also helps to customize the validation rules to make it  according to the need. If the component has input value then the conversion of the value to the required type is needed and then specified validator type is invoked to check whether this value is of required format and type. This tag contains one attribute named "validatorID" which is required attribute. In this attribute we specify the name of backing bean class where we write functionality according to our need.For custom validation Validator interface is implemented in the class providing validation. You have to maintain the faces-config file where validator-id and validator-class is specified within the validator element. Here, one thing that we have to take care is that validator-id in both places (in faces-config file and validator tag in jsp file ) should match. 

Code Description :

<%@ page contentType="text/html" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>

<f:view>
<html>
<body>
<h:form id="form1">
<table>
<tr>
<td><font color="#FF0000"><h:message for="email" /></font></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>
<h:inputText id="email" required="true">
<f:validator validatorId="checkvalidemail" />
</h:inputText>
</td>
<td><h:commandButton value="Submit" /></td>
</tr>
</table>
</h:form>
</body>
</html>
</f:view>

Backing Bean (Validation.java) : The code below is for backing bean used in this example. 

package roseindia;

import javax.faces.*;
import javax.faces.validator.*;
import javax.faces.application.*;
import javax.faces.component.*;
import javax.faces.context.*;
import java.util.regex.*;
public class validation implements Validator{
public validation(){}

public void validate(FacesContext facesContext, UIComponent uIComponent, Object object) throws ValidatorException{
String enteredEmail = (String)object;
Pattern p = Pattern.compile(".+@.+\\.[a-z]+");
Matcher m = p.matcher(enteredEmail);
boolean matchFound = m.matches();

if (!matchFound) {
FacesMessage message = new FacesMessage();
message.setSummary("Invalid Email ID.");
throw new ValidatorException(message);
}
}
}

Now we have to register this class in the faces-config file like below :

<faces-config>
..................
..................
<validator>
<validator-id>checkvalidemail</validator-id>
<validator-class>roseindia.validation</validator-class>
</validator>
.................
.................
</faces-config>

Here in this above case "checkvalidemail" specified in "validator-id" is the alias name (this will be used in jsp file to access the actual backing bean class)  of the actual class specified in "validator-class" in the faces-config file. For ex.

Rendered Output :

If we enter incorrect email address then its validation process makes it invalid and shows error message to the user, like below.

Html Source Code :

<html>
<body>
<form id="form1" method="post" action="/f-tags/pages/validator/validator.jsf" enctype="application/x-www-form-urlencoded">
<table>
<tr>
<td><font color="#FF0000"></font></td>
<td>&nbsp;</td>
</tr><tr><td>
<input id="form1:email" type="text" name="form1:email" />
</td>
<td><input type="submit" name="form1:_id1" value="Submit" /></td>
</tr>
</table>

<input type="hidden" name="form1" value="form1" /></form>
</body>
</html>

This tag contains one attribute :

validatorId : This is the required attribute and  is used to specify the ID of the validator class which we are going  to use in this validation process (in the case of custom validation). This value must match with the validator-id element specified in validator tag of faces-config file.

                          

Facing Programming Problem?
Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

2 comments so far (post your own) View All Comments Latest 10 Comments:

I HAVE USED YOUR JSF EMAIL VALIDATOR CODE AND IT IS EXCELLENT ............

Posted by hemanth on Tuesday, 02.5.08 @ 10:16am | #47266

Do you have any example for the following:

I have 2 input fields, field-2 value will be dependent on field-1 value. Eg: if field-1 value is others, field-2 is required, otherwise, field-2 can be left blank.

Posted by nagamy on Thursday, 05.24.07 @ 13:15pm | #17145

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Hot Web Programming Job

Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2007. All rights reserved.