Struts 2 stringlength validator

The stringlength validator is used check that the length of the string field is within a specified range.

Plain validator syntax of stringlength validator.

<validators> 
<validator type="stringlength">
  <param name="fieldName">fieldName</param>
    <param name="minLength"> minLength</param>
    <param name="maxLength"> maxLength</param>
    <param name="trim">true</param>
    <message>message string</message>
  </validator>
</validators>

Field validator syntax of stringlength validator.

<validators> 
    <field name="fieldName ">
 	<field-validator type="stringlength ">
                <param name="minLength"> minLength</param>
                <param name="maxLength"> maxLength</param>
                <param name="trim">true</param>
       		<message>message string</message>
        </field-validator>
    </field>
</validators>

Struts 2 stringlength validator example:

login.jsp

<%@ taglib uri="/struts-tags" prefix="s"%>
<html>
	<head>
		<title>Struts 2 stringlength validator example</title>
	</head>
	<body>
		<h3>This is a stringlength validator example.</h3>
 
		<s:form action="Login">
		  <s:textfield name="userName" label="UserName"/>
		  <s:password name="password" label="Password"/>
		  <s:submit value="login" align="center"/>
		</s:form>
 
	</body>
</html>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 
	xmlns="http://java.sun.com/xml/ns/javaee" 
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
 
 
 	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>
        	org.apache.struts2.dispatcher.ng.
        	filter.StrutsPrepareAndExecuteFilter
        </filter-class>
	</filter>
 
	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
 
	<welcome-file-list>
	  <welcome-file>login.jsp</welcome-file>
	</welcome-file-list>
 
</web-app>

struts.xml

<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
 
<struts>
 
	<package name="user" extends="struts-default">
		<action name="Login" 
                              class="com.w3spoint.action.Login">
			<result name="success">/welcome.jsp</result>
			<result name="input">/login.jsp</result>
		</action>
	</package>
 
</struts>

Login.java

import com.opensymphony.xwork2.ActionSupport;
 
/**
 * This class is used as an action class.
 * @author w3spoint
 */
public class Login extends ActionSupport{
	//data members
	private String userName;
	private String password;
 
	//business logic
	public String execute(){
		return SUCCESS;	
	}	
 
	//getter setters
	public String getUserName() {
		return userName;
	}
	public void setUserName(String userName) {
		this.userName = userName;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
}

Login-validation.xml

<!DOCTYPE validators PUBLIC 
"-//OpenSymphony Group//XWork Validator 1.0.2//EN"
"http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd">
 
<validators>
   <field name="userName">
      <field-validator type="stringlength">
      	<param name="minLength">5</param>
		<param name="maxLength">10</param>
		<param name="trim">true</param>
         <message>
            Username should be of 5 to 10 characters.
         </message>
      </field-validator>
   </field>
 
   <field name="password">
	<field-validator type="stringlength">
		<param name="minLength">5</param>
		<param name="maxLength">10</param>
		<param name="trim">true</param>
         <message>
            Password should be of 6 characters.
         </message>
      </field-validator>
   </field>
</validators>

welcome.jsp

<%@ taglib uri="/struts-tags" prefix="s"%>
<html>
	<head>
	  <title>Struts 2 stringlength validator example</title>
	</head>
	<body>
	  <h3>This is a stringlength validator example.</h3>		
	  Hello <s:property value="userName" />	 
	</body>
</html>

Output:

struts 16 login   Enter UserName and Password. struts 16 value   Click on login button. struts 16 final   Download this example.   Next Topic: Struts 2 int validator with example. Previous Topic: Struts 2 requiredstring validator with example.

 

Please follow and like us:
Content Protection by DMCA.com