hk2000c技术专栏

技术源于哲学,哲学来源于生活 关心生活,关注健康,关心他人

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  111 随笔 :: 1 文章 :: 28 评论 :: 0 Trackbacks

以 BaseCommandController 为例
protected void initApplicationContext() {
  if (this.validators != null) {
   for (int i = 0; i < this.validators.length; i++) {
    if (this.commandClass != null && !this.validators[i].supports(this.commandClass))
     throw new IllegalArgumentException("Validator [" + this.validators[i] +
       "] does not support command class [" +
       this.commandClass.getName() + "]");
   }
  }
 }

子类配置如下

 <bean id="addNewsController" class="AddNewsController" scope="request">
        <property name="formView" value="/management/news/addNews"/>
        <property name="validator" ref="beanValidator"/>
        <property name="successView" value="forward:/management/news/newsList.html"/>
        <property name="commandClass" value="News"/>
        <property name="commandName" value="news"/>
    </bean>

public final void setValidator(Validator validator) {
  this.validators = new Validator[] {validator};
 }

设置Validator数组

在初始化的时候,检验 是否支持command 类型
this.validators[i].supports(this.commandClass)

此support 为 org.springframework.validation.Validator 的所有 实现类的 方法,检验支持检验类的动作。


举例 配置
 <bean id="beanValidator" class="org.springmodules.validation.commons.DefaultBeanValidator">
        <property name="validatorFactory" ref="validatorFactory"/>
    </bean>

DefaultBeanValidator extends AbstractBeanValidator implements Validator

再看实现方法

   /**
     * Checks if the validatorFactory is configured to handle this class.  Will
     * convert the class into a form name, suitable for commons validator.
     *
     * @return <code>true</code> if the validatorFactory supports the class,
     *         or <code>false</code> if not
     * @see #getFormName(Class)
     */
    public boolean supports(Class clazz) {
        boolean canSupport = validatorFactory.hasRulesForBean(getFormName(clazz), getLocale());
        if (log.isDebugEnabled()) {
            log.debug("validatorFactory " + (canSupport ? "does" : "does not")
                + " support class " + clazz + " with form name " + getFormName(clazz));
        }
        return canSupport;
    }

检验是否支持输入类

另一个方法
 /**
     * If <code>useFullyQualifiedClassName</code> is false (default value), this function returns a
     * string containing the uncapitalized, short name for the given class
     * (e.g. myBean for the class com.domain.test.MyBean). Otherwise, it  returns the value
     * returned by <code>Class.getName()</code>.
     *
     * @param cls <code>Class</code> of the bean to be validated.
     * @return the bean name.
     */
    protected String getFormName(Class cls) {
        return (this.useFullyQualifiedClassName) ? cls.getName() : Introspector.decapitalize(ClassUtils.getShortName(cls));
    }
 Introspector.decapitalize(ClassUtils.getShortName(cls) 获得按照西班牙命名法的form 名

这个方法本意是获得以类名为formName 的所有校验配置。

实际上有一个重大的设计缺陷






posted on 2007-10-26 00:48 hk2000c 阅读(1840) 评论(0)  编辑  收藏 所属分类: CMS项目开发

只有注册用户登录后才能发表评论。


网站导航: