/*
* 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.boot.context.properties;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.boot.context.properties.source.ConfigurationProperty;
import org.springframework.boot.context.properties.source.ConfigurationPropertyName;
import org.springframework.context.ApplicationContext;
import org.springframework.util.Assert;
Bean to record and provide bound @ConfigurationProperties
. Author: Madhura Bhave Since: 2.3.0
/**
* Bean to record and provide bound
* {@link ConfigurationProperties @ConfigurationProperties}.
*
* @author Madhura Bhave
* @since 2.3.0
*/
public class BoundConfigurationProperties {
private Map<ConfigurationPropertyName, ConfigurationProperty> properties = new LinkedHashMap<>();
The bean name that this class is registered with.
/**
* The bean name that this class is registered with.
*/
private static final String BEAN_NAME = BoundConfigurationProperties.class.getName();
void add(ConfigurationProperty configurationProperty) {
this.properties.put(configurationProperty.getName(), configurationProperty);
}
Get the configuration property bound to the given name.
Params: - name – the property name
Returns: the bound property or null
/**
* Get the configuration property bound to the given name.
* @param name the property name
* @return the bound property or {@code null}
*/
public ConfigurationProperty get(ConfigurationPropertyName name) {
return this.properties.get(name);
}
Get all bound properties.
Returns: a map of all bound properties
/**
* Get all bound properties.
* @return a map of all bound properties
*/
public Map<ConfigurationPropertyName, ConfigurationProperty> getAll() {
return Collections.unmodifiableMap(this.properties);
}
Return the BoundConfigurationProperties
from the given ApplicationContext
if it is available. Params: - context – the context to search
Returns: a BoundConfigurationProperties
or null
/**
* Return the {@link BoundConfigurationProperties} from the given
* {@link ApplicationContext} if it is available.
* @param context the context to search
* @return a {@link BoundConfigurationProperties} or {@code null}
*/
public static BoundConfigurationProperties get(ApplicationContext context) {
if (!context.containsBeanDefinition(BEAN_NAME)) {
return null;
}
return context.getBean(BEAN_NAME, BoundConfigurationProperties.class);
}
static void register(BeanDefinitionRegistry registry) {
Assert.notNull(registry, "Registry must not be null");
if (!registry.containsBeanDefinition(BEAN_NAME)) {
BeanDefinition definition = BeanDefinitionBuilder
.genericBeanDefinition(BoundConfigurationProperties.class, BoundConfigurationProperties::new)
.getBeanDefinition();
definition.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
registry.registerBeanDefinition(BEAN_NAME, definition);
}
}
}