`

Tapestry 建立自己得 Validator

阅读更多

今天介绍一下如何建立自己得Validator
1. 建立Validator继承BaseValidator类
我实现得是验证用户输入必须和指定字段一致。
如果想要带参数得验证,请添加一个带String参数得构造方法,并实现setter,getter方法
例如validator验证调用名为 name,则实现setName,getName方法。
代码:
package org.appfuse.webapp.tapestry;

import org.apache.tapestry.IMarkupWriter;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.TapestryUtils;
import org.apache.tapestry.form.FormComponentContributorContext;
import org.apache.tapestry.form.IFormComponent;
import org.apache.tapestry.form.ValidationMessages;
import org.apache.tapestry.form.validator.BaseValidator;
import org.apache.tapestry.valid.ValidatorException;

public class MyValidater extends BaseValidator {
//用户得输入内容
 private String name;

 /**
  * @return the name
  */
 public String getName() {
  return name;
 }

 /**
  * @param name
  *            the name to set
  */
 public void setName(String name) {
  this.name = name;
 }

 public MyValidater() {

 }

 public MyValidater(String string) {
  super(string);
 }

//实现验证方法
 public void validate(IFormComponent field, ValidationMessages messages,
   Object object) throws ValidatorException {
  String str = object.toString();
  if (!str.equals(name))
   throw new ValidatorException(messages.formatValidationMessage(
     getMessage(), "invalid-format", new Object[] {
       field.getDisplayName(), null }));
 }
}

2.ok,修改hivemodule.xml 文件,添加以下代码

    <contribution configuration-id="tapestry.form.validator.Validators">
       <validator name="name" configurable="true" class="org.appfuse.webapp.tapestry.MyValidater"/>
   </contribution>


注意:如果你的validator不带参数,请设置configurable=false
3.  ok,可以在page文件中使用了,

    <component id="usernameField" type="TextField">
        <binding name="value" value="user.username"/>
        <binding name="validators" value="validators:required,name=airdream"/>
        <binding name="displayName" value="message:user.username"/>
    </component>

大功告成!输入内容必须为aridream,否则报错!
分享到:
评论

相关推荐

    Tapestry+5.1+实例教程

    - 用于在组件之间建立数据连接,使得数据能够在组件间流动。 - 通过`@Bind`注释可以定义数据绑定。 5. **异常处理(Exception Handling):** - Tapestry提供了一套机制来处理运行时可能出现的异常,并向用户展示...

    Spring-Reference_zh_CN(Spring中文参考手册)

    5.2. 使用Spring的Validator接口进行校验 5.3. 从错误代码到错误信息 5.4. Bean处理和BeanWrapper 5.4.1. 设置和获取属性值以及嵌套属性 5.4.2. 内建的PropertyEditor实现 5.4.2.1. 注册用户自定义的PropertyEditor ...

    Spring 2.0 开发参考手册

    5.2. 使用Spring的Validator接口进行校验 5.3. 从错误代码到错误信息 5.4. Bean处理和BeanWrapper 5.4.1. 设置和获取属性值以及嵌套属性 5.4.2. 内建的PropertyEditor实现 6. 使用Spring进行面向切面编程(AOP...

    Spring中文帮助文档

    5.2. 使用Spring的Validator接口进行校验 5.3. 从错误代码到错误信息 5.4. Bean处理和BeanWrapper 5.4.1. 设置和获取属性值以及嵌套属性 5.4.2. 内建的PropertyEditor实现 6. 使用Spring进行面向切面编程(AOP...

    Spring API

    5.2. 使用Spring的Validator接口进行校验 5.3. 从错误代码到错误信息 5.4. Bean处理和BeanWrapper 5.4.1. 设置和获取属性值以及嵌套属性 5.4.2. 内建的PropertyEditor实现 6. 使用Spring进行面向切面编程(AOP...

    spring chm文档

    5.2. 使用Spring的Validator接口进行校验 5.3. 从错误代码到错误信息 5.4. Bean处理和BeanWrapper 5.4.1. 设置和获取属性值以及嵌套属性 5.4.2. 内建的PropertyEditor实现 6. 使用Spring进行面向切面编程(AOP...

Global site tag (gtag.js) - Google Analytics