Springboot2.1 读配置文件
Posted 走路带_风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot2.1 读配置文件相关的知识,希望对你有一定的参考价值。
在配置文件中读字段:
@PropertySource(value = "classpath:xxx.properties",encoding = "utf-8")//在springboot中可以不用添加
@Value("$key")
private String testKey;
在配置文件中读Map:
@Value("#$xxxxx")
private HashMap<String, String> testMap;
xxxxx= key:value
以上是关于Springboot2.1 读配置文件的主要内容,如果未能解决你的问题,请参考以下文章
springboot2.1.3 本地加载jar包+打包载入本地jar
Qt读写三种文件,QSettings读ini配置文件,QJsonDocument读JSON文件,QDomDocument读xml文件