当前位置: 首页>>代码示例>>Java>>正文


Java ConfigurationPropertySources.get方法代码示例

本文整理汇总了Java中org.springframework.boot.context.properties.source.ConfigurationPropertySources.get方法的典型用法代码示例。如果您正苦于以下问题:Java ConfigurationPropertySources.get方法的具体用法?Java ConfigurationPropertySources.get怎么用?Java ConfigurationPropertySources.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.boot.context.properties.source.ConfigurationPropertySources的用法示例。


在下文中一共展示了ConfigurationPropertySources.get方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: get

import org.springframework.boot.context.properties.source.ConfigurationPropertySources; //导入方法依赖的package包/类
@Override
public T get(Object key) {
	if (!this.delegate.containsKey(key) && key instanceof String) {
		T entry = BeanUtils.instantiateClass(entryClass);
		Binder binder = new Binder(ConfigurationPropertySources.get(environment),new PropertySourcesPlaceholdersResolver(environment),this.conversionService);
		binder.bind(defaultsPrefix, Bindable.ofInstance(entry));
		this.delegate.put((String) key, entry);
	}
	return this.delegate.get(key);
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-stream,代码行数:11,代码来源:EnvironmentEntryInitializingTreeMap.java

示例2: put

import org.springframework.boot.context.properties.source.ConfigurationPropertySources; //导入方法依赖的package包/类
@Override
public T put(String key, T value) {
	// boot 2 call this first
	Binder binder = new Binder(ConfigurationPropertySources.get(environment),new PropertySourcesPlaceholdersResolver(environment),this.conversionService);
	binder.bind(defaultsPrefix, Bindable.ofInstance(value));
	return this.delegate.put(key, value);
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-stream,代码行数:8,代码来源:EnvironmentEntryInitializingTreeMap.java

示例3: getClientProperties

import org.springframework.boot.context.properties.source.ConfigurationPropertySources; //导入方法依赖的package包/类
private ClientProperties getClientProperties(ConditionContext context) {
    Iterable<ConfigurationPropertySource> sources = ConfigurationPropertySources.get(context.getEnvironment());
    ClientProperties clientProperties = new ClientProperties();
    new Binder(sources).bind("spring.boot.admin.client", Bindable.ofInstance(clientProperties));
    return clientProperties;
}
 
开发者ID:codecentric,项目名称:spring-boot-admin,代码行数:7,代码来源:SpringBootAdminClientEnabledCondition.java


注:本文中的org.springframework.boot.context.properties.source.ConfigurationPropertySources.get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。