Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add upgrade notes

This page describes Changes in version 1.2.0 of Commons Validator (see section 1. Changes) and notes on Upgrading from Validator 1.1.4 (see section 2. Upgrading).

...

1. Changes

Wiki Markup
The aim of this pagesection is to provide a summary of the changes in *Validator 1.2.0*. -  Forfor a full list of the changes in this Validator 1.2.0 version see the \[http://peoplejakarta.apache.org/~niallpcommons/commons-validator/1.2.0-rc3/site/changes-report.html Changes Report\].

1.1 Validator Inheritance

Probably the most significant change in Validator 1.2.0 is the introduction of inheritance which comes in two forms:

  • Explicit Form inheritance
  • Implicit Locale inheritance

1.1.1 Explicit Form Inheritance

Wiki Markup
Explicit Form Inheritance is where one \[http://peoplejakarta.apache.org/~niallpcommons/commons-validator/1.2.0-rc3/site/apidocs/org/apache/commons/validator/Form.html Form\] can inherit from another by specifying the name of the form to inherit using the new *extends* property (which is also an new attribute in the \[http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/validator/trunk/conf/share/validator_1_2_0.dtd?view=markup validator_1_2_0.dtd\]). See \[http://issues.apache.org/bugzilla/show_bug.cgi?id=27870 #27870\].

...

No Format
    <formset>
        <form name="baseForm">
            <field property="firstName" depends="required">
                ...
            </field>
            <field property="lastName" depends="required">
                ...
            </field>
        </form>

        <form name="nameForm" extends="baseForm">
            <field property="lastName" depends="required,minLength">
                ...
            </field>
        </form>
    </formset>

1.1.2 Implicit Locale Inheritance

Prior to Validator 1.2.0, forms defined in different FormSet's (i.e. different Locales) were treated completely separtely. Now Forms with the same name implicitly inherit from those in less specific locales.

...

N.B. See Section 2. Variables in Resource Bundles which may remove your need to have multiple FormSet's for different locales altogether.

1.2

...

Variables in Resource Bundles

One motivation for having different Form Sets was due to the fact that variable values needed to be different for different locales. Validator 1.2.0 has the facility to specify variable values in resource bundles which removes the need for multiple formsets in this instance

Wiki Markup
Two new properties have been added to \[http://peoplejakarta.apache.org/~niallpcommons/commons-validator/1.2.0-rc3/site/apidocs/org//apidocs/org/apache/commons/validator/Var.html Variable\] - *resource* and *bundle*. Setting *resource* to *true* (default is _false_) indicates that the variable's value is a _resource key_. Additionally the (optional) *bundle* property can be set to the name of an alternative resource bundle.

...

Wiki Markup
*N.B.* Validator provides the facility to indicate that a variable's value is in a resource bundle - but it is down to individual configured validators to actually take notice of these properties and retrieve the value from the resource bundle. Struts 1.3 has been upgraded to take advantage this feature and is an example of what custom validators need to do. See the Struts \[http://svn.apache.org/viewcvs.cgi/struts/core/trunk/src/java/org/apache/struts/validator/FieldChecks.java?view=markup FieldChecks\] class.

1.3

...

Arg0-Arg3 Deprecations Removed

A number of deprecations have been removed in Validator 1.2.0 - however probably the biggest impact will be the Arg0-Arg3 elements (which were replaced by Arg).

...

Additionally, this issue only arises if you upgrade to the new version of the Validator DTD - previous versions of the DTD using arg0-arg3 will continue to work in Validator 1.2.0.

1.4

...

Changes to Validators

A few new validators have been added:

...

  • Wiki Markup
    The Strategy for locating a form using name/id has changed to correct various issues - see \[http://issues.apache.org/bugzilla/show_bug.cgi?id=35127 Bug 35127\], \[http://issues.apache.org/bugzilla/show_bug.cgi?id=35294 Bug 35294\] and \[http://issues.apache.org/bugzilla/show_bug.cgi?id=31534 Bug 31534\]
  • Wiki Markup
    *Required* validator fixed for \[http://issues.apache.org/bugzilla/show_bug.cgi?id=15912 Bug 15912\] and \[http://issues.apache.org/bugzilla/show_bug.cgi?id=33047 Bug 33047\]
  • Wiki Markup
    *Date* validator enhanced to support _datePattern_ - see \[http://issues.apache.org/bugzilla/show_bug.cgi?id=22384 Bug 22384\]
    \\

1.5

...

Dependency Changes

The following changes to validator's dependencies have occured:

...

Wiki Markup
*N.B.* \[http://jakarta.apache.org/commons/beanutils/ Commons BeanUtils\] 1.7.0 removed its dependency on \[http://jakarta.apache.org/commons/collections/ Commons Collections\] by including the few required Collections classes in its distribution. This is why Validator 1.2.0 no longer has a dependency on Collections - Collection's classes used by Validator are in [BeanUtils] 1.7.0.

...

2. Upgrading

This section describes upgrading from validator 1.1.4.

2.1 Deploying jars

Obvious, but don't forget to deploy the new Validator 1.2.0 jar and also upgrade to new versions of dependency jars for BeanUtils, Digester and Logging (see section 1.5 above).

2.2 New DTD version

Wiki Markup
There is a new version of the validator DTD: \[http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/validator/trunk/conf/share/validator_1_2_0.dtd?view=markup validator_1_2_0.dtd\]. However the previous version of the DTD (\[http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/validator/trunk/conf/share/validator_1_1_3.dtd?view=markup validator_1_1_3.dtd\]) will continue to work and there is no requirement to upgrade.

Wiki Markup
Upgrading your system to use \[http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/validator/trunk/conf/share/validator_1_2_0.dtd?view=markup validator_1_2_0.dtd\] has the following consequences:

  • You will be able to use the new features that depend on the attributes that have been added to the DTD.
  • If your validation.xml files uses the ar0-arg3 elements - these will need to be replaced with "arg" - see the section 1.3 Arg0-Arg3 Deprecations Removed above.

Wiki Markup
NOT Upgrading your system to use \[http://svn.apache.org/viewcvs.cgi/jakarta/commons/proper/validator/trunk/conf/share/validator_1_2_0.dtd?view=markup validator_1_2_0.dtd\] has the following consequences:

  • You won't be able to use (some of) the new features which depend on new elements in the DTD.

2.3 Struts Users

2.3.1 Struts 1.2.x

  • Validator 1.2.0 can be deployed with Struts 1.2.x to take advantage of the new features(except one, see below).
  • Wiki Markup
    In Struts 1.2.7 Javascript validation doesn't work in XHTML mode (see \[http://issues.apache.org/bugzilla/show_bug.cgi?id=35127 Bug 35127\]) - resolving this bug requires upgrading to Struts 1.2.8 (hopefully soon to be released) and Validator 1.2.0
  • The Variables in Resource Bundles feature described in section 1.2 above does not work in Struts 1.2.x - this requires Struts 1.3

2.3.2 Struts 1.3

Struts 1.3 is dependant on Validator 1.2.0 and fully supports all the fetures described above.