Java 类org.hibernate.validator.parameternameprovider.ParanamerParameterNameProvider 实例源码

项目:parsec-libraries    文件:ValidationConfigurationContextResolver.java   
/** Get a context. */
@Override
public ValidationConfig getContext(Class<?> type) {
    final ValidationConfig config = new ValidationConfig();
    config.constraintValidatorFactory(resourceContext.getResource(InjectingConstraintValidatorFactory.class));
    CachingParanamer paranamer = new CachingParanamer(new CustomAnnotationParanamer());
    config.parameterNameProvider(new ParanamerParameterNameProvider(paranamer));
    return config;
}
项目:ameba    文件:ValidationFeature.java   
@Override
public ValidationConfig getContext(final Class<?> type) {
    return new ValidationConfig()
            .constraintValidatorFactory(resourceContext.getResource(InjectingConstraintValidatorFactory.class))
            .parameterNameProvider(new ParanamerParameterNameProvider())
            .messageInterpolator(
                    new ResourceBundleMessageInterpolator(
                            buildBundleLocator(VALIDATION_MESSAGE_BUNDLE_NAME),
                            buildBundleLocator(Messages.BUNDLE_NAME),
                            mode.isProd()
                    )
            );
}