Frameworks| Hibernate| Struts| JSF| JavaFX| Ajax| Spring| DOJO| JDO| iBatis| Questions?
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
 
JSF Validation In Login Application
This section gives you the best approach for the login application. You have learnt about the login application without validating the application. But in this section you will learn how to validate a form in JSF using it's tags.
 
Search Tutorials:
 
Software Solutions and Services
 

 
Google Custom Search:
Website Designing Services
 
Web Designing Packages From $150!
 
Website Designing Company Web Hosting
 
Website Designing Quotation

JSF Validation In Login Application

                          

This section gives you the best approach for the login application. You have learnt about the login application without validating the application. But in this section you will learn how to validate a form in JSF using it's tags. JSF tags give you the validation facilities for validate the JSF form on server. Validation of the form restricts you for the wrong entries.

This section also provides you the complete source code of the application that validate your login application. You can download the zip file and copy it inside the tomcat/webapps folder and run it by type the following url in your browser.

URL: http://localhost:8080/LoginValidation/login.jsf.

Output of the login application with the complete validation is shown as follows:

Login ID: chandan
Password: chand

Login Form:

This is the simple login form in which you have to enter the login id and the password. This form is validated. If you do not enter login id and password and click on the Login button then the message will be opened like:

This image is showing you the validation error message for required value. If you enter the login id only and click on the Login button to submit the form then the application generate a validation error message for the required value of the password field like:

This application will generate the error message for the particular JSF form component until you enter the login id and the password value something else.

Code of the login.jsp file that makes the login form:

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

<f:view>
	<html>
		<head><title>JSF Simple Login Example</title></head>
		
		<body>
			<h:form>
				<table>
					<tr>
						<td><h:outputText value="Enter
 Login ID: " /></td>
						<td><h:inputText id="loginname"
 value="#{SimpleLogin.loginname}" required="true" /><font color="#FF0000">
<h:message for="loginname"/></font></td>
					</tr>
					<tr>
						<td><h:outputText value="Enter Password:
 " /></td>
						<td><h:inputSecret id="password" value="
#{SimpleLogin.password}" required="true" /><font color="#FF0000"><h:message for="
password"/></font></td>
					</tr>
					<tr>
						<td>&nbsp;</td>
						<td><h:commandButton value="Login" action
="#{SimpleLogin.CheckValidUser}" /></td>
					</tr>
				</table>
			</h:form>
		</body>
	</html>
</f:view>

Here is the code for the resultforfail.jsp file:

Login Failed!

Here is the code for the resultforsuccess.jsp file:

Login Successful!

Here is the code for the Backing Bean SimpleLogin.java file:

package roseindia;

public class SimpleLogin{
	String loginname;
	String password;

	public SimpleLogin(){}

	public String getLoginname(){
		return loginname;
	}

	public void setLoginname(String loginname){
		this.loginname = loginname;
	}

	public String getPassword(){
		return password;
	}

	public void setPassword(String password){
		this.password = password;
	}

	public String CheckValidUser(){
		if(loginname.equals("chandan") && password.equals("chand")){
			System.out.println("chandan");
			return "success";
		}
		else{
			return "fail";
		}
	}
}

faces-config.xml file code:


<?xml version="1.0"?>
<!DOCTYPE faces-config PUBLIC
  "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">

<faces-config>
	<managed-bean>
		<managed-bean-name>SimpleLogin</managed-bean-name>
		<managed-bean-class>roseindia.SimpleLogin</managed-bean-class>
		<managed-bean-scope>request</managed-bean-scope>
	</managed-bean>
	<navigation-rule>
		<from-view-id>/login.jsp</from-view-id>
		<navigation-case>
			<from-action>#{SimpleLogin.CheckValidUser}</from-action>
			<from-outcome>success</from-outcome>
			<to-view-id>resultforsuccess.jsp</to-view-id>
		</navigation-case>
		<navigation-case>
			<from-action>#{SimpleLogin.CheckValidUser}</from-action>
			<from-outcome>fail</from-outcome>
			<to-view-id>resultforfail.jsp</to-view-id>
		</navigation-case>
	</navigation-rule>
</faces-config>

web.xml file code:

<?xml version="1.0"?> 
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 
2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>server</param-value>
    </context-param>    

    <!-- Faces Servlet -->
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup> 1 </load-on-startup>
    </servlet>

	<!-- Faces Servlet Mapping -->
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
</web-app>

Download This Complete Application.

                          

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

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.

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

Current Comments

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

good one !

Posted by sudhakar on Friday, 12.28.07 @ 13:06pm | #44030

Training Courses
Tell A Friend
Your Friend Name
Search Tutorials:

 

 
 

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

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

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

Copyright © 2008. All rights reserved.