org.springframework.validation.BindingErrorProcessor Java Examples

The following examples show how to use org.springframework.validation.BindingErrorProcessor. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ConfigurableWebBindingInitializer.java    From spring-analysis-note with MIT License 4 votes vote down vote up
/**
 * Return the strategy to use for processing binding errors.
 */
@Nullable
public final BindingErrorProcessor getBindingErrorProcessor() {
	return this.bindingErrorProcessor;
}
 
Example #2
Source File: ConfigurableWebBindingInitializer.java    From java-technology-stack with MIT License 4 votes vote down vote up
/**
 * Return the strategy to use for processing binding errors.
 */
@Nullable
public final BindingErrorProcessor getBindingErrorProcessor() {
	return this.bindingErrorProcessor;
}
 
Example #3
Source File: ConfigurableWebBindingInitializer.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Return the strategy to use for processing binding errors.
 */
public final BindingErrorProcessor getBindingErrorProcessor() {
	return this.bindingErrorProcessor;
}
 
Example #4
Source File: ConfigurableWebBindingInitializer.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
/**
 * Return the strategy to use for processing binding errors.
 */
public final BindingErrorProcessor getBindingErrorProcessor() {
	return this.bindingErrorProcessor;
}
 
Example #5
Source File: ConfigurableWebBindingInitializer.java    From spring-analysis-note with MIT License 2 votes vote down vote up
/**
 * Set the strategy to use for processing binding errors, that is,
 * required field errors and {@code PropertyAccessException}s.
 * <p>Default is {@code null}, that is, using the default strategy
 * of the data binder.
 * @see org.springframework.validation.DataBinder#setBindingErrorProcessor
 */
public final void setBindingErrorProcessor(@Nullable BindingErrorProcessor bindingErrorProcessor) {
	this.bindingErrorProcessor = bindingErrorProcessor;
}
 
Example #6
Source File: ConfigurableWebBindingInitializer.java    From java-technology-stack with MIT License 2 votes vote down vote up
/**
 * Set the strategy to use for processing binding errors, that is,
 * required field errors and {@code PropertyAccessException}s.
 * <p>Default is {@code null}, that is, using the default strategy
 * of the data binder.
 * @see org.springframework.validation.DataBinder#setBindingErrorProcessor
 */
public final void setBindingErrorProcessor(@Nullable BindingErrorProcessor bindingErrorProcessor) {
	this.bindingErrorProcessor = bindingErrorProcessor;
}
 
Example #7
Source File: ConfigurableWebBindingInitializer.java    From lams with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Set the strategy to use for processing binding errors, that is,
 * required field errors and {@code PropertyAccessException}s.
 * <p>Default is {@code null}, that is, using the default strategy
 * of the data binder.
 * @see org.springframework.validation.DataBinder#setBindingErrorProcessor
 */
public final void setBindingErrorProcessor(BindingErrorProcessor bindingErrorProcessor) {
	this.bindingErrorProcessor = bindingErrorProcessor;
}
 
Example #8
Source File: ConfigurableWebBindingInitializer.java    From spring4-understanding with Apache License 2.0 2 votes vote down vote up
/**
 * Set the strategy to use for processing binding errors, that is,
 * required field errors and {@code PropertyAccessException}s.
 * <p>Default is {@code null}, that is, using the default strategy
 * of the data binder.
 * @see org.springframework.validation.DataBinder#setBindingErrorProcessor
 */
public final void setBindingErrorProcessor(BindingErrorProcessor bindingErrorProcessor) {
	this.bindingErrorProcessor = bindingErrorProcessor;
}