类 LocalValidatorFactoryBean
- java.lang.Object
- org.springframework.validation.beanvalidation.SpringValidatorAdapter
- org.springframework.validation.beanvalidation.LocalValidatorFactoryBean
- 所有已实现的接口:
Validator,ValidatorFactory,Aware,DisposableBean,InitializingBean,ApplicationContextAware,SmartValidator,Validator
- 直接已知子类:
OptionalValidatorFactoryBean
public class LocalValidatorFactoryBean extends SpringValidatorAdapter implements ValidatorFactory, ApplicationContextAware, InitializingBean, DisposableBean
This is the central class forjavax.validation(JSR-303) setup in a Spring application context: It bootstraps ajavax.validation.ValidationFactoryand exposes it through the SpringValidatorinterface as well as through the JSR-303Validatorinterface and theValidatorFactoryinterface itself.When talking to an instance of this bean through the Spring or JSR-303 Validator interfaces, you'll be talking to the default Validator of the underlying ValidatorFactory. This is very convenient in that you don't have to perform yet another call on the factory, assuming that you will almost always use the default Validator anyway. This can also be injected directly into any target dependency of type
Validator!As of Spring 4.0, this class supports Bean Validation 1.0 and 1.1, with special support for Hibernate Validator 4.3 and 5.x (see
setValidationMessageSource(org.springframework.context.MessageSource)).Note that Bean Validation 1.1's
#forExecutablesmethod isn't supported: We do not expect that method to be called by application code; considerMethodValidationInterceptorinstead. If you really need programmatic#forExecutablesaccess, inject this class as aValidatorFactoryand callgetValidator()on it, then#forExecutableson the returned nativeValidatorreference instead of directly on this class. Alternatively, call#unwrap(Validator.class)which will also provide the native object.This class is also being used by Spring's MVC configuration namespace, in case of the
javax.validationAPI being present but no explicit Validator having been configured.- 从以下版本开始:
- 3.0
- 作者:
- Juergen Hoeller
- 另请参阅:
ValidatorFactory,Validator,Validation.buildDefaultValidatorFactory(),ValidatorFactory.getValidator()
构造器概要
构造器 构造器 说明 LocalValidatorFactoryBean()
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voidafterPropertiesSet()Invoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.voidclose()voiddestroy()Invoked by the containingBeanFactoryon destruction of a bean.ConstraintValidatorFactorygetConstraintValidatorFactory()MessageInterpolatorgetMessageInterpolator()TraversableResolvergetTraversableResolver()Map<String,String>getValidationPropertyMap()Allow Map access to the bean validation properties to be passed to the validation provider, with the option to add or override specific entries.ValidatorgetValidator()protected voidpostProcessConfiguration(Configuration<?> configuration)Post-process the given Bean Validation configuration, adding to or overriding any of its settings.voidsetApplicationContext(ApplicationContext applicationContext)Set the ApplicationContext that this object runs in.voidsetConstraintValidatorFactory(ConstraintValidatorFactory constraintValidatorFactory)Specify a custom ConstraintValidatorFactory to use for this ValidatorFactory.voidsetMappingLocations(Resource... mappingLocations)Specify resource locations to load XML constraint mapping files from, if any.voidsetMessageInterpolator(MessageInterpolator messageInterpolator)Specify a custom MessageInterpolator to use for this ValidatorFactory and its exposed default Validator.voidsetParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer)Set the ParameterNameDiscoverer to use for resolving method and constructor parameter names if needed for message interpolation.voidsetProviderClass(Class providerClass)Specify the desired provider class, if any.voidsetTraversableResolver(TraversableResolver traversableResolver)Specify a custom TraversableResolver to use for this ValidatorFactory and its exposed default Validator.voidsetValidationMessageSource(MessageSource messageSource)Specify a custom Spring MessageSource for resolving validation messages, instead of relying on JSR-303's default "ValidationMessages.properties" bundle in the classpath.voidsetValidationProperties(Properties jpaProperties)Specify bean validation properties to be passed to the validation provider.voidsetValidationPropertyMap(Map<String,String> validationProperties)Specify bean validation properties to be passed to the validation provider as a Map.voidsetValidationProviderResolver(ValidationProviderResolver validationProviderResolver)Specify a JSR-303ValidationProviderResolverfor bootstrapping the provider of choice, as an alternative toMETA-INFdriven resolution.<T> Tunwrap(Class<T> type)ValidatorContextusingContext()从类继承的方法 org.springframework.validation.beanvalidation.SpringValidatorAdapter
determineErrorCode, determineField, getArgumentsForConstraint, getConstraintsForClass, getRejectedValue, getResolvableField, processConstraintViolations, supports, validate, validate, validate, validateProperty, validateValue
构造器详细资料
LocalValidatorFactoryBean
public LocalValidatorFactoryBean()
方法详细资料
setProviderClass
public void setProviderClass(Class providerClass)
Specify the desired provider class, if any.If not specified, JSR-303's default search mechanism will be used.
setValidationProviderResolver
public void setValidationProviderResolver(ValidationProviderResolver validationProviderResolver)
Specify a JSR-303ValidationProviderResolverfor bootstrapping the provider of choice, as an alternative toMETA-INFdriven resolution.- 从以下版本开始:
- 4.3
setMessageInterpolator
public void setMessageInterpolator(MessageInterpolator messageInterpolator)
Specify a custom MessageInterpolator to use for this ValidatorFactory and its exposed default Validator.
setValidationMessageSource
public void setValidationMessageSource(MessageSource messageSource)
Specify a custom Spring MessageSource for resolving validation messages, instead of relying on JSR-303's default "ValidationMessages.properties" bundle in the classpath. This may refer to a Spring context's shared "messageSource" bean, or to some special MessageSource setup for validation purposes only.NOTE: This feature requires Hibernate Validator 4.3 or higher on the classpath. You may nevertheless use a different validation provider but Hibernate Validator's
ResourceBundleMessageInterpolatorclass must be accessible during configuration.Specify either this property or
"messageInterpolator", not both. If you would like to build a custom MessageInterpolator, consider deriving from Hibernate Validator'sResourceBundleMessageInterpolatorand passing in a Spring-basedResourceBundleLocatorwhen constructing your interpolator.In order for Hibernate's default validation messages to be resolved still, your
MessageSourcemust be configured for optional resolution (usually the default). In particular, theMessageSourceinstance specified here should not apply"useCodeAsDefaultMessage"behavior. Please double-check your setup accordingly.
setTraversableResolver
public void setTraversableResolver(TraversableResolver traversableResolver)
Specify a custom TraversableResolver to use for this ValidatorFactory and its exposed default Validator.
setConstraintValidatorFactory
public void setConstraintValidatorFactory(ConstraintValidatorFactory constraintValidatorFactory)
Specify a custom ConstraintValidatorFactory to use for this ValidatorFactory.Default is a
SpringConstraintValidatorFactory, delegating to the containing ApplicationContext for creating autowired ConstraintValidator instances.
setParameterNameDiscoverer
public void setParameterNameDiscoverer(ParameterNameDiscoverer parameterNameDiscoverer)
Set the ParameterNameDiscoverer to use for resolving method and constructor parameter names if needed for message interpolation.Default is a
DefaultParameterNameDiscoverer.
setMappingLocations
public void setMappingLocations(Resource... mappingLocations)
Specify resource locations to load XML constraint mapping files from, if any.
setValidationProperties
public void setValidationProperties(Properties jpaProperties)
Specify bean validation properties to be passed to the validation provider.Can be populated with a String "value" (parsed via PropertiesEditor) or a "props" element in XML bean definitions.
setValidationPropertyMap
public void setValidationPropertyMap(Map<String,String> validationProperties)
Specify bean validation properties to be passed to the validation provider as a Map.Can be populated with a "map" or "props" element in XML bean definitions.
getValidationPropertyMap
public Map<String,String> getValidationPropertyMap()
Allow Map access to the bean validation properties to be passed to the validation provider, with the option to add or override specific entries.Useful for specifying entries directly, for example via "validationPropertyMap[myKey]".
setApplicationContext
public void setApplicationContext(ApplicationContext applicationContext)
从接口复制的说明:ApplicationContextAwareSet the ApplicationContext that this object runs in. Normally this call will be used to initialize the object.Invoked after population of normal bean properties but before an init callback such as
InitializingBean.afterPropertiesSet()or a custom init-method. Invoked afterResourceLoaderAware.setResourceLoader(org.springframework.core.io.ResourceLoader),ApplicationEventPublisherAware.setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher)andMessageSourceAware, if applicable.- 指定者:
setApplicationContext在接口中ApplicationContextAware- 参数:
applicationContext- the ApplicationContext object to be used by this object- 另请参阅:
BeanInitializationException
afterPropertiesSet
public void afterPropertiesSet()
从接口复制的说明:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
- 指定者:
afterPropertiesSet在接口中InitializingBean
postProcessConfiguration
protected void postProcessConfiguration(Configuration<?> configuration)
Post-process the given Bean Validation configuration, adding to or overriding any of its settings.Invoked right before building the
ValidatorFactory.- 参数:
configuration- the Configuration object, pre-populated with settings driven by LocalValidatorFactoryBean's properties
getValidator
public Validator getValidator()
- 指定者:
getValidator在接口中ValidatorFactory
usingContext
public ValidatorContext usingContext()
- 指定者:
usingContext在接口中ValidatorFactory
getMessageInterpolator
public MessageInterpolator getMessageInterpolator()
- 指定者:
getMessageInterpolator在接口中ValidatorFactory
getTraversableResolver
public TraversableResolver getTraversableResolver()
- 指定者:
getTraversableResolver在接口中ValidatorFactory
getConstraintValidatorFactory
public ConstraintValidatorFactory getConstraintValidatorFactory()
unwrap
public <T> T unwrap(Class<T> type)
- 指定者:
unwrap在接口中Validator- 指定者:
unwrap在接口中ValidatorFactory- 覆盖:
unwrap在类中SpringValidatorAdapter
close
public void close()
destroy
public void destroy()
从接口复制的说明:DisposableBeanInvoked by the containingBeanFactoryon destruction of a bean.- 指定者:
destroy在接口中DisposableBean