类 ValidatorAdapter

  • 所有已实现的接口:
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.InitializingBean, org.springframework.context.ApplicationContextAware, org.springframework.validation.SmartValidator, org.springframework.validation.Validator

    public class ValidatorAdapter
    extends Object
    implements org.springframework.validation.SmartValidator, org.springframework.context.ApplicationContextAware, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.DisposableBean
    Validator implementation that delegates calls to another Validator. This Validator implements Spring's SmartValidator interface but does not implement the JSR-303 javax.validator.Validator interface.
    从以下版本开始:
    2.0.0
    • 方法详细资料

      • getTarget

        public final org.springframework.validation.Validator getTarget()
      • supports

        public boolean supports​(Class<?> clazz)
        指定者:
        supports 在接口中 org.springframework.validation.Validator
      • validate

        public void validate​(Object target,
                             org.springframework.validation.Errors errors)
        指定者:
        validate 在接口中 org.springframework.validation.Validator
      • validate

        public void validate​(Object target,
                             org.springframework.validation.Errors errors,
                             Object... validationHints)
        指定者:
        validate 在接口中 org.springframework.validation.SmartValidator
      • setApplicationContext

        public void setApplicationContext​(org.springframework.context.ApplicationContext applicationContext)
                                   throws org.springframework.beans.BeansException
        指定者:
        setApplicationContext 在接口中 org.springframework.context.ApplicationContextAware
        抛出:
        org.springframework.beans.BeansException
      • destroy

        public void destroy()
                     throws Exception
        指定者:
        destroy 在接口中 org.springframework.beans.factory.DisposableBean
        抛出:
        Exception
      • get

        public static org.springframework.validation.Validator get​(org.springframework.context.ApplicationContext applicationContext,
                                                                   org.springframework.validation.Validator validator)
        Return a Validator that only implements the Validator interface, wrapping it if necessary.

        If the specified Validator is not null, it is wrapped. If not, a Validator is retrieved from the context and wrapped. Otherwise, a new default validator is created.

        参数:
        applicationContext - the application context
        validator - an existing validator to use or null
        返回:
        the validator to use