博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java yml文件_yml文件内容映射到pojo
阅读量:6361 次
发布时间:2019-06-23

本文共 915 字,大约阅读时间需要 3 分钟。

1yml读取

使用注解指定配置文件路径

eg

写 yml配置文件到resource中

实现接口PropertySourceFactory

public class YamlPropertySourceFactory implements PropertySourceFactory {

public PropertySource> createPropertySource(String name, EncodedResource resource) throws IOException {

return name != null ? new PropertySourcesLoader().load(resource.getResource(), name, null) : new PropertySourcesLoader().load(

resource.getResource(), getNameForResource(resource.getResource()), null);

}

private static String getNameForResource(Resource resource) {

String name = resource.getDescription();

if (!StringUtils.hasText(name)) {

name = resource.getClass().getSimpleName() + "@" + System.identityHashCode(resource);

}

return name;

}

}

然后映射到pojo

类上加上相应的注解

@ConfigurationProperties(prefix = "strategies")

@PropertySource(value = "classpath:strategies.yml",factory = YamlPropertySourceFactory.class)

Abc类{}

2yml注意 。 :后面要有空格 ,注意区分大小写

3yml能够读取的格式 string list map

转载地址:http://mcima.baihongyu.com/

你可能感兴趣的文章
自定义元素探秘及构建可复用组件最佳实践
查看>>
自定义Linux service脚本
查看>>
ICMP
查看>>
CentOS6 手动编译升级 gcc
查看>>
memcached的安装与开启脚本
查看>>
zabbix 邮件报警 -- sendmail
查看>>
tcpdump用法小记
查看>>
Oracle随机函数—dbms_random
查看>>
windows下开发库路径解决方案
查看>>
linux迁移mysql数据目录
查看>>
函数为左边表达式
查看>>
2015.06.04 工作任务与心得
查看>>
icinga2使用587端口发邮件
查看>>
【14】Python100例基础练习(1)
查看>>
boost bind使用指南
查看>>
Android M 特性 Doze and App Standby模式详解
查看>>
IE FF(火狐) line-height兼容详解
查看>>
TX Text Control文字处理教程(3)打印操作
查看>>
mysqld_multi实现多主一从复制
查看>>
中介模式
查看>>