/*
 * Copyright 2012-2020 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.data.repository.config;

import java.lang.annotation.Annotation;

import javax.annotation.Nonnull;

import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.support.BeanNameGenerator;
import org.springframework.context.EnvironmentAware;
import org.springframework.context.ResourceLoaderAware;
import org.springframework.context.annotation.ConfigurationClassPostProcessor;
import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
import org.springframework.core.env.Environment;
import org.springframework.core.io.ResourceLoader;
import org.springframework.core.type.AnnotationMetadata;
import org.springframework.util.Assert;

Base class to implement ImportBeanDefinitionRegistrars to enable repository
Author:Oliver Gierke
/** * Base class to implement {@link ImportBeanDefinitionRegistrar}s to enable repository * * @author Oliver Gierke */
public abstract class RepositoryBeanDefinitionRegistrarSupport implements ImportBeanDefinitionRegistrar, ResourceLoaderAware, EnvironmentAware { private @SuppressWarnings("null") @Nonnull ResourceLoader resourceLoader; private @SuppressWarnings("null") @Nonnull Environment environment; /* * (non-Javadoc) * @see org.springframework.context.ResourceLoaderAware#setResourceLoader(org.springframework.core.io.ResourceLoader) */ @Override public void setResourceLoader(ResourceLoader resourceLoader) { this.resourceLoader = resourceLoader; } /* * (non-Javadoc) * @see org.springframework.context.EnvironmentAware#setEnvironment(org.springframework.core.env.Environment) */ @Override public void setEnvironment(Environment environment) { this.environment = environment; }
Forwarding to registerBeanDefinitions(AnnotationMetadata, BeanDefinitionRegistry, BeanNameGenerator) for backwards compatibility reasons so that tests in downstream modules do not accidentally invoke the super type's default implementation.
See Also:
Deprecated:since 2.2, call registerBeanDefinitions(AnnotationMetadata, BeanDefinitionRegistry, BeanNameGenerator) instead.
/** * Forwarding to {@link #registerBeanDefinitions(AnnotationMetadata, BeanDefinitionRegistry, BeanNameGenerator)} for * backwards compatibility reasons so that tests in downstream modules do not accidentally invoke the super type's * default implementation. * * @see org.springframework.context.annotation.ImportBeanDefinitionRegistrar#registerBeanDefinitions(org.springframework.core.type.AnnotationMetadata, * org.springframework.beans.factory.support.BeanDefinitionRegistry) * @deprecated since 2.2, call * {@link #registerBeanDefinitions(AnnotationMetadata, BeanDefinitionRegistry, BeanNameGenerator)} * instead. * @see ConfigurationClassPostProcessor#IMPORT_BEAN_NAME_GENERATOR */
@Override @Deprecated public void registerBeanDefinitions(AnnotationMetadata metadata, BeanDefinitionRegistry registry) { registerBeanDefinitions(metadata, registry, ConfigurationClassPostProcessor.IMPORT_BEAN_NAME_GENERATOR); } /* * (non-Javadoc) * @see org.springframework.context.annotation.ImportBeanDefinitionRegistrar#registerBeanDefinitions(org.springframework.core.type.AnnotationMetadata, org.springframework.beans.factory.support.BeanDefinitionRegistry, org.springframework.beans.factory.support.BeanNameGenerator) */ @Override public void registerBeanDefinitions(AnnotationMetadata metadata, BeanDefinitionRegistry registry, BeanNameGenerator generator) { Assert.notNull(metadata, "AnnotationMetadata must not be null!"); Assert.notNull(registry, "BeanDefinitionRegistry must not be null!"); Assert.notNull(resourceLoader, "ResourceLoader must not be null!"); // Guard against calls for sub-classes if (metadata.getAnnotationAttributes(getAnnotation().getName()) == null) { return; } AnnotationRepositoryConfigurationSource configurationSource = new AnnotationRepositoryConfigurationSource(metadata, getAnnotation(), resourceLoader, environment, registry, generator); RepositoryConfigurationExtension extension = getExtension(); RepositoryConfigurationUtils.exposeRegistration(extension, registry, configurationSource); RepositoryConfigurationDelegate delegate = new RepositoryConfigurationDelegate(configurationSource, resourceLoader, environment); delegate.registerRepositoriesIn(registry, extension); }
Return the annotation to obtain configuration information from. Will be wrappen into an AnnotationRepositoryConfigurationSource so have a look at the constants in there for what annotation attributes it expects.
Returns:
/** * Return the annotation to obtain configuration information from. Will be wrappen into an * {@link AnnotationRepositoryConfigurationSource} so have a look at the constants in there for what annotation * attributes it expects. * * @return */
protected abstract Class<? extends Annotation> getAnnotation();
Returns the RepositoryConfigurationExtension for store specific callbacks and BeanDefinition post-processing.
See Also:
Returns:
/** * Returns the {@link RepositoryConfigurationExtension} for store specific callbacks and {@link BeanDefinition} * post-processing. * * @see RepositoryConfigurationExtensionSupport * @return */
protected abstract RepositoryConfigurationExtension getExtension(); }