public abstract class ValueChangeValidator<T> extends Object implements Validator<T>
By default, JSF validators run on every request, regardless of whether the submitted value has changed or not. In case of validation against the DB on complex objects which are already stored in the model in a broader scope, such as the view scope, this may result in unnecessarily expensive service/DAO calls. In such case, you'd like to perform the expensive service/DAO call only when the submitted value is really changed as compared to the model value.
This validator offers you a template to do it transparently. To use it, just change your validators from:
public class YourValidator implements Validator<YourEntity> { public void validate(FacesContext context, UIComponent component, YourEntity submittedValue) { // ... } }
to
public class YourValidator extends ValueChangeValidator<YourEntity> { public void validateChangedObject(FacesContext context, UIComponent component, YourEntity submittedValue) { // ... } }So, essentially, just replace
implements Validator
by extends ValueChangeValidator
and
rename the method from validate
to validateChangedObject
.NOT_IN_RANGE_MESSAGE_ID
Constructor and Description |
---|
ValueChangeValidator() |
Modifier and Type | Method and Description |
---|---|
void |
validate(FacesContext context,
UIComponent component,
T submittedValue)
If the component is an instance of
EditableValueHolder and its old object value is equal to the
submitted value, then return immediately from the method and don't perform any validation. |
abstract void |
validateChangedObject(FacesContext context,
UIComponent component,
T submittedValue)
Use this method instead of
validate(FacesContext, UIComponent, Object) if you intend to perform the
validation only when the submitted value is really changed as compared to the model value. |
public void validate(FacesContext context, UIComponent component, T submittedValue)
EditableValueHolder
and its old object value is equal to the
submitted value, then return immediately from the method and don't perform any validation. Otherwise, invoke
validateChangedObject(FacesContext, UIComponent, Object)
which may in turn do the necessary possibly
expensive DAO operations.public abstract void validateChangedObject(FacesContext context, UIComponent component, T submittedValue)
validate(FacesContext, UIComponent, Object)
if you intend to perform the
validation only when the submitted value is really changed as compared to the model value.context
- The involved faces context.component
- The involved UI component.submittedValue
- The submitted value.Copyright © 2012–2020 OmniFaces. All rights reserved.