- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.mesosphere.sdk.config.YAMLConfigurationLoader
类的一些代码示例,展示了YAMLConfigurationLoader
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAMLConfigurationLoader
类的具体详情如下:
包路径:com.mesosphere.sdk.config.YAMLConfigurationLoader
类名称:YAMLConfigurationLoader
[英]Utility class that helps load YAML configuration into a POJO, while ensuring that environment variables can override pre-configured configuration values.
[中]
代码示例来源:origin: mesosphere/dcos-commons
public static <T> T loadConfigFromEnv(Class<T> configurationClass, final String path)
throws IOException
{
LOGGER.info("Parsing configuration file from {} ", path);
logProcessEnv();
final Path configPath = Paths.get(path);
final File file = configPath.toAbsolutePath().toFile();
final ObjectMapper mapper = new ObjectMapper(new YAMLFactory());
final StrSubstitutor sub = new StrSubstitutor(new StrLookup<Object>() {
@Override
public String lookup(String key) {
return System.getenv(key);
}
});
sub.setEnableSubstitutionInVariables(true);
final String conf = sub.replace(FileUtils.readFileToString(file));
return mapper.readValue(conf, configurationClass);
}
代码示例来源:origin: mesosphere/dcos-commons
@Test
public void testLoader() throws Exception {
final TestConfig testConfig = YAMLConfigurationLoader.loadConfigFromEnv(TestConfig.class
, Paths.get(this.getClass().getClassLoader().getResource("test.yml").toURI()).toString());
Assert.assertEquals("DCOS", testConfig.getName());
Assert.assertEquals(1, testConfig.getCount());
}
}
本文整理了Java中ninja.leaping.configurate.yaml.YAMLConfigurationLoader.()方法的一些代码示例,展示了YAMLConfigurationLoa
本文整理了Java中ninja.leaping.configurate.yaml.YAMLConfigurationLoader.builder()方法的一些代码示例,展示了YAMLConfigura
本文整理了Java中org.apache.cassandra.config.YamlConfigurationLoader.loadConfig()方法的一些代码示例,展示了YamlConfigura
本文整理了Java中org.apache.cassandra.config.YamlConfigurationLoader.()方法的一些代码示例,展示了YamlConfigurationLoader
本文整理了Java中org.apache.cassandra.config.YamlConfigurationLoader.getStorageConfigURL()方法的一些代码示例,展示了Yaml
本文整理了Java中io.smartcat.berserker.configuration.YamlConfigurationLoader.loadConfig()方法的一些代码示例,展示了YamlC
我是一名优秀的程序员,十分优秀!