本文整理了Java中org.springframework.beans.factory.config.YamlPropertiesFactoryBean.createProperties()
方法的一些代码示例,展示了YamlPropertiesFactoryBean.createProperties()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YamlPropertiesFactoryBean.createProperties()
方法的具体详情如下:
包路径:org.springframework.beans.factory.config.YamlPropertiesFactoryBean
类名称:YamlPropertiesFactoryBean
方法名:createProperties
[英]Template method that subclasses may override to construct the object returned by this factory. The default implementation returns a properties with the content of all resources.
Invoked lazily the first time #getObject() is invoked in case of a shared singleton; else, on each #getObject() call.
[中]子类可以重写以构造此工厂返回的对象的模板方法。默认实现返回一个包含所有资源内容的属性。
在共享单例情况下,第一次调用#getObject()时延迟调用;否则,每次调用#getObject()时。
代码示例来源:origin: spring-projects/spring-framework
@Override
@Nullable
public Properties getObject() {
return (this.properties != null ? this.properties : createProperties());
}
代码示例来源:origin: org.springframework/spring-beans
@Override
@Nullable
public Properties getObject() {
return (this.properties != null ? this.properties : createProperties());
}
代码示例来源:origin: spring-projects/spring-framework
@Override
public void afterPropertiesSet() {
if (isSingleton()) {
this.properties = createProperties();
}
}
代码示例来源:origin: org.springframework/spring-beans
@Override
public void afterPropertiesSet() {
if (isSingleton()) {
this.properties = createProperties();
}
}
代码示例来源:origin: apache/servicemix-bundles
@Override
public Properties getObject() {
return (this.properties != null ? this.properties : createProperties());
}
代码示例来源:origin: apache/servicemix-bundles
@Override
public void afterPropertiesSet() {
if (isSingleton()) {
this.properties = createProperties();
}
}
内容来源于网络,如有侵权,请联系作者删除!