本文整理汇总了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);
}
示例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);
}
示例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;
}