Validating Struts 2 Login Application using Annotations
In this section we are going to validate our login application using Annotations
in Action class. Our current login application does not validate the user
against the database. Instead login name and passwords are validated against the
hardcode values (User: Admin and Password: Admin) in the actions class.
Working of the application
Steps to develop the application
Here are simple and easy steps to develop Login page in the using Struts 2 framework.
| <%@ taglib prefix="s" uri="/struts-tags"
%> <html> <head> <title>Struts 2 Login Application!</title> <link href="<s:url value="/css/main.css"/>" rel="stylesheet" type="text/css"/> </head> <body> <s:form action="AnnotationAction" method="POST" validate="true"> |
The code :
<s:actionerror />
<s:fielderror />
displays action errors and field validation errors.
The code <s:form
action="AnnotationAction"
method="POST" validate="true">
generates the html form for the
application.
The code :
<s:textfield name="username"
label="Login name"/>
<s:password name="password" label="Password"/>
generates Login Name and Password fields.
The submit button is generated through <s:submit
value="Login" align="center"/> code.
The loginsuccess.jsp page displays the Login Success message when
user is authenticated successfully. Here is the code of loginsuccess.jsp
file:
| <html>
<head> <title>Login Success</title> </head> <body> <p align="center"><font color="#000080" size="5">Login Successful</font></p> </body> </html>
|
AnnotationAction.java) we have
extended ActionSupport class and imported the com.opensymphony.xwork2.validator.annotations
package . AnnotationAction" class is saved in the "webapps\struts2tutorial\WEB-INF\src\java\net\roseindia"
directoy. Here is the code of AnnotationAction.java action class:
AnnotationAction.java
|
package net.roseindia; import com.opensymphony.xwork2.ActionSupport; import com.opensymphony.xwork2.validator.annotations.*; @Validation public class AnnotationAction extends ActionSupport { private String username = null; private String password = null; @RequiredStringValidator(message="Supply name") public String getUsername() { return username; } public void setUsername(String value) { username = value; } @RequiredStringValidator(message="Supply password") public String getPassword() { return password; } public void setPassword(String value) { password = value; } public String execute() throws Exception { System.out.println("Validating login"); if(!getUsername().equals("Admin") || !getPassword().equals("Admin")){ addActionError("Invalid user name or password! Please try again!"); return ERROR; } else{ return SUCCESS; } } } |
| <action name="LoginAnnotation"> <result>/pages/log-in.jsp</result> </action> <action name="AnnotationAction" class="net.roseindia.AnnotationAction"> <result name="input">/pages/log-in.jsp</result> <result name="error">/pages/log-in.jsp</result> <result>/pages/loginsuccess.jsp</result> </action> |
In the above mapping the action "LoginAnnotation"
is used to display the login page and "AnnotationAction" validates the user
using action class (AnnotationAction.java).
| @CHARSET "UTF-8"; body { font: 12px verdana, arial, helvetica, sans-serif; background-color:#FFFFFF; } table.wwFormTable { font: 12px verdana, arial, helvetica, sans-serif; border-width: 1px; border-color: #030; border-style: solid; color: #242; background-color: #ada; width: 30%; margin-left:35%; margin-right:35%; margin-top:15%; } table.wwFormTable th { } table.wwFormTable tr td { background-color: #dfd; margin: 5px; padding: 5px; } .tdLabel { /* border-width: 1px; border-color: #afa; border-style: solid; */ font-weight: bold; align: top; } .label { } .errorMessage { color: red; font-size: 0.8em; } #headerDiv { border-style: solid; border-width: 1px 1px 0px; border-color: black; padding: 5px; background-color: #7a7; /* height: 22px; */ height: 1.8em; /* margin-bottom: 12px; */ } #buttonBar { border-width: 0px 1px 1px; border-style: solid; border-color: black; color: white; margin-bottom: 12px; background-color: #7a7; height: 1.6em; padding: 5px; } #appName { color: white; font-size: 1.8em; } #pageTitle { font-size: 1.4em; color: #dfd; clear: none; } #appName, #pageTitle { float: right; } #menuContainer { float: left; } #brandingContainer { float: right: text-align: right; } |
Compiling the application
To compile the application go to "\webapps\struts2tutorial\WEB-INF\src" directory and type ant command. The ant tool will compile the application for you.
Adding the link into index.html
Finally we have to add the link in the index.html to access the login form.
<ul>
<li><a href="roseindia/LoginAnnotation.action">Action Annotation Example</a></li>
</ul>
Output:
If you click Login button without filling the fields , you will get the output page as :
![]() |
![]() |
If you fill only the "Login name" field and click Login button without filling the next fields, you will get the output page as :
![]() |
![]() |
If you fill the wrong information and click the Login button, you will get the output page as :
| |
![]() |
|
If you fill the correct information and click the Login button, you will get the output page as :
![]() |
|
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Validations using Struts 2 Annotations
Post your Comment