Tabnine Logo
Log.ignoringXmlConfiguration
Code IndexAdd Tabnine to your IDE (free)

How to use
ignoringXmlConfiguration
method
in
org.hibernate.validator.internal.util.logging.Log

Best Java code snippets using org.hibernate.validator.internal.util.logging.Log.ignoringXmlConfiguration (Showing top 2 results out of 315)

origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.hibernate-validator

/**
 * Tries to check whether a validation.xml file exists and parses it
 */
private void parseValidationXml() {
  if ( ignoreXmlConfiguration ) {
    log.ignoringXmlConfiguration();
    if ( validationBootstrapParameters.getTraversableResolver() == null ) {
      validationBootstrapParameters.setTraversableResolver( defaultTraversableResolver );
    }
    if ( validationBootstrapParameters.getConstraintValidatorFactory() == null ) {
      validationBootstrapParameters.setConstraintValidatorFactory( defaultConstraintValidatorFactory );
    }
    if ( validationBootstrapParameters.getParameterNameProvider() == null ) {
      validationBootstrapParameters.setParameterNameProvider( defaultParameterNameProvider );
    }
  }
  else {
    ValidationBootstrapParameters xmlParameters = new ValidationBootstrapParameters(
        getBootstrapConfiguration(), externalClassLoader
    );
    applyXmlSettings( xmlParameters );
  }
}
origin: org.hibernate.validator/hibernate-validator

/**
 * Tries to check whether a validation.xml file exists and parses it
 */
private void parseValidationXml() {
  if ( ignoreXmlConfiguration ) {
    LOG.ignoringXmlConfiguration();
    if ( validationBootstrapParameters.getTraversableResolver() == null ) {
      validationBootstrapParameters.setTraversableResolver( defaultTraversableResolver );
    }
    if ( validationBootstrapParameters.getConstraintValidatorFactory() == null ) {
      validationBootstrapParameters.setConstraintValidatorFactory( defaultConstraintValidatorFactory );
    }
    if ( validationBootstrapParameters.getParameterNameProvider() == null ) {
      validationBootstrapParameters.setParameterNameProvider( defaultParameterNameProvider );
    }
    if ( validationBootstrapParameters.getClockProvider() == null ) {
      validationBootstrapParameters.setClockProvider( defaultClockProvider );
    }
  }
  else {
    ValidationBootstrapParameters xmlParameters = new ValidationBootstrapParameters(
        getBootstrapConfiguration(), externalClassLoader
    );
    applyXmlSettings( xmlParameters );
  }
}
org.hibernate.validator.internal.util.loggingLogignoringXmlConfiguration

Popular methods of Log

  • getInvalidRegularExpressionException
  • getInvalidLengthForFractionPartException
  • getInvalidLengthForIntegerPartException
  • getLengthCannotBeNegativeException
  • getMaxCannotBeNegativeException
  • getMinCannotBeNegativeException
  • debug
  • debugf
  • errorInExpressionLanguage
  • evaluatingExpressionLanguageExpressionCausedException
  • getAnnotationDoesNotContainAParameterException
  • getAtLeastOneCustomMessageMustBeCreatedException
  • getAnnotationDoesNotContainAParameterException,
  • getAtLeastOneCustomMessageMustBeCreatedException,
  • getAtLeastOneGroupHasToBeSpecifiedException,
  • getAttemptToSpecifyAnArrayWhereSingleValueIsExpectedException,
  • getBeanClassHasAlreadyBeConfiguredViaProgrammaticApiException,
  • getBeanClassMustBePartOfRedefinedDefaultGroupSequenceException,
  • getBeanDoesNotContainConstructorException,
  • getBeanDoesNotContainMethodException,
  • getBeanDoesNotContainTheFieldException,
  • getBeanDoesNotContainThePropertyException

Popular in Java

  • Finding current android device location
  • notifyDataSetChanged (ArrayAdapter)
  • addToBackStack (FragmentTransaction)
  • getSystemService (Context)
  • Menu (java.awt)
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Reference (javax.naming)
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now