org.springframework.beans.factory.config.YamlPropertiesFactoryBean.createProperties()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(131)

本文整理了Java中org.springframework.beans.factory.config.YamlPropertiesFactoryBean.createProperties()方法的一些代码示例,展示了YamlPropertiesFactoryBean.createProperties()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YamlPropertiesFactoryBean.createProperties()方法的具体详情如下:
包路径:org.springframework.beans.factory.config.YamlPropertiesFactoryBean
类名称:YamlPropertiesFactoryBean
方法名:createProperties

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();
  }
}

相关文章