|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Validator | |
---|---|
org.springframework.validation | Provides data binding and validation functionality, for usage in business and/or UI layers. |
org.springframework.web.bind | Provides web-specific data binding functionality, including a utility class for easy invocation of binding and validation. |
org.springframework.web.servlet.mvc | Standard controller implementations for the MVC framework that comes with Spring. |
Uses of Validator in org.springframework.validation |
---|
Methods in org.springframework.validation with parameters of type Validator | |
---|---|
static void |
ValidationUtils.invokeValidator(Validator validator,
Object object,
Errors errors)
Invoke the given validator for the given object and Errors instance. |
Uses of Validator in org.springframework.web.bind |
---|
Methods in org.springframework.web.bind with parameters of type Validator | |
---|---|
static BindException |
BindUtils.bindAndValidate(ServletRequest request,
Object object,
String objectName,
Validator validator)
Bind the parameters from the given request to the given object, invoking the given validator. |
static BindException |
BindUtils.bindAndValidate(ServletRequest request,
Object object,
String objectName,
Validator validator,
BindInitializer initializer)
Bind the parameters from the given request to the given object, invoking the given validator, and allowing for optional custom editors set in an bind initializer. |
Uses of Validator in org.springframework.web.servlet.mvc |
---|
Methods in org.springframework.web.servlet.mvc that return Validator | |
---|---|
Validator |
BaseCommandController.getValidator()
|
Validator[] |
BaseCommandController.getValidators()
|
Methods in org.springframework.web.servlet.mvc with parameters of type Validator | |
---|---|
void |
BaseCommandController.setValidator(Validator validator)
Set the primary Validator for this controller. |
void |
BaseCommandController.setValidators(Validator[] validators)
Set the Validators for this controller. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |