- int验证器
- int验证器的参数
- int验证器的示例
int验证器的参数为int验证器定义了3个参数。
Parameter | Description |
---|---|
fieldName | 指定要验证的字段名称。仅在Plain-Validator中需要。 |
min | 指定最小值。默认情况下将其忽略。 |
max | 指定最大值。默认情况下将其忽略。 |
<
validators>
<
!-- Plain Validator Syntax -->
<
validator type="int">
<
param name="fieldName">
age<
/param>
<
param name="min">
16<
/param>
<
param name="max">
50<
/param>
<
message>
Age must be between ${min} and ${max}<
/message>
<
/validator>
<
/validators>
<
validators>
<
!-- Field Validator Syntax -->
<
field name="age">
<
field-validator type="int">
<
param name="min">
16<
/param>
<
param name="max">
50<
/param>
<
message>
Age must be between ${min} and ${max}<
/message>
<
/field-validator>
<
/field>
<
/validators>
完整的int验证器示例1)创建index.jsp作为输入
该jsp页面使用struts UI标记创建表单。它从用户那里接收名称, 密码和电子邮件ID。
index.jsp
<
%@ taglib uri="/struts-tags" prefix="s" %>
<
html>
<
head>
<
STYLE type="text/css">
.errorMessage{color:red;
}
<
/STYLE>
<
/head>
<
body>
<
s:form action="register">
<
s:textfield name="id" label="Product Id">
<
/s:textfield>
<
s:textfield name="price" label="Product Price">
<
/s:textfield>
<
s:submit value="http://www.srcmini.com/register">
<
/s:submit>
<
/s:form>
<
/body>
<
/html>
2)创建动作类
该操作类继承了ActionSupport类并覆盖了execute方法。
RegisterAction.java
package com.srcmini;
import com.opensymphony.xwork2.ActionSupport;
public class Register extends ActionSupport{
private int id;
private double price;
public int getId() {
return id;
}public void setId(int id) {
this.id = id;
}public double getPrice() {
return price;
}public void setPrice(double price) {
this.price = price;
}public String execute(){
return "success";
}}
3)创建验证文件
在这里, 我们使用捆绑的验证器来执行验证。
Register-validation.xml
<
?xml version="1.0" encoding="UTF-8"?>
<
!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="id">
<
field-validator type="int">
<
param name="min">
1<
/param>
<
param name="max">
999<
/param>
<
message>
Id must be between ${min} to ${max}<
/message>
<
/field-validator>
<
/field>
<
/validators>
4)创建struts.xml
该xml文件通过名称输入和拦截器jsonValidatorWorkflowStack定义了一个额外的结果。
struts.xml
<
?xml version="1.0" encoding="UTF-8" ?>
<
!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<
struts>
<
package name="default" extends="struts-default">
<
action name="register" class="com.srcmini.Register">
<
result name="input">
index.jsp<
/result>
<
result>
welcome.jsp<
/result>
<
/action>
<
/package>
<
/struts>
5)创建视图组件
它是显示用户信息的简单jsp文件。
welcome.jsp
<
%@ taglib uri="/struts-tags" prefix="s" %>
Product Id:<
s:property value="http://www.srcmini.com/id"/>
<
br/>
Product price:<
s:property value="http://www.srcmini.com/price"/>
【Struts 2 int验证示例】下载此示例
推荐阅读
- Struts 2正则表达式验证示例
- Struts 2日期验证示例
- Struts 2电子邮件验证示例
- Struts 2验证(捆绑验证器用法介绍)
- Struts 2 requiredstring验证示例
- Struts 2字符串长度验证示例
- Struts 2自定义验证-工作流拦截器示例图解
- Struts 2实现文件上传示例图解
- Struts 2验证教程介绍