spring boot 如何正确读取配置文件属性-亚博电竞手机版
目录
- 前言
- @value
- 示例代码
- @configurationproperties
- 示例代码
- @enableconfigurationproperties
- @configurationpropertiesscan
- @propertysource
- 示例代码
- 总结
前言
项目中经常会经常读取配置文件中的属性的值,spring boot提供了很多注解读取配置文件属性,那么如何正确使用呢?
@value
@value用来读取application.yml配置文件中属性的值。
示例代码
application.yml文件中属性:
//定义属性 filename : test isfile : false filepath : c://test
@value读取application.yml属性值:
@configuration public class fileconfig { @value("${filename}") private final string filename; @value("${isfile}") private boolean isfile; @value("${filepath}") private static string filepath; }
测试:
@autowired private fileconfig fileconfig; @getmapping("getfileconfig") public void getfileconfig() { logger.info("fileconfig:{}",fileconfig); }
运行结果:
fileconfig:fileconfig [filename=, isfile=false, filepath=null]
特别注意:
- @value不能将属性值读取静态变量,否则读取的值为空。
- @value不能将属性值读取常量,否则读取的值为空。
- @value不能读取boolean类型的值,经过测试spring boot2.1的版本是无效的,2.2以上版本支持。
所以个人建议非必要情况,尽量少用@value注解读取属性值。
@configurationproperties
读取配置文件值并且转换成类对象,便于获取值和修改属性值。
示例代码
application.yml文件中属性:
http: pool: # 连接超时 connecttimeout: 5000 #获取连接池中连接超时 connectionrequesttimeout: 1000 #每个路由连接数量 defaultmaxperroute: 50 # /连接池中最大连接数 maxtotal: 50 # 服务器返回数据(response)的时间 sockettimeout: 5000 #定义不活动的时间(以毫秒为单位),连接回收 validateafterinactivity: 30000
@configurationproperties读取application.yml中以http.pool开头的属性值:
//以http.pool开头 @component @configurationproperties(prefix = "http.pool") public class httpclientconfig implements serializable { private static final long serialversionuid = -4608251658338406043l; /** * 最大连接数 */ private integer maxtotal; /** * 路由是对最大连接数的细分 * 每个路由基础的连接数 */ private integer defaultmaxperroute; /** * 连接超时时间 */ private integer connecttimeout; /** * 从连接池中获取连接的超时时间 */ private integer connectionrequesttimeout; /** * 服务器返回数据(response)的时间 */ private integer sockettimeout;
测试:
@getmapping("gethttpclientconfig") public void gethttpclientconfig() { string json=fastjsonutil.tojsonstring(httpclientconfig); logger.info("fileconfig:{}",json); }
属性嵌套:
@configurationproperties 可以嵌套list、map、class
c恰卡编程网onfig: url:http://localhsot:8080 gaode-map: host: https://restapi.amap.com/v3 key: 1234 @configurationproperties(prefix="config") public class config { //高德地图信息 private gaodemap gaodemap; }
特别注意:
- 默认情况不会将实体注入到spring的容器中,需要结合
@enableconfigurationproperties
或者@component
一起使用,否则注入对象为空。
@enableconfigurationproperties
将@configurationproperties
读取对象注入到spring容器中。例如上述示例也可以采用@enableconfigurationproperties
来注入
@enableconfigurationproperties(httpclientconfig.class) public class filecontroller { private logger logger = loggerfactory.getlogger(filecontroller.class); @autowired private fileconfig fileconfig; @getmapping("gethttpclientconfig") public void gethttpclientconfig() { string json=fastjsonutil.tojsonstring(httpclientconfig); logger.info("fileconfig:{}",json); } }
@configurationpropertiesscan
用来扫描@configurationproperties
实体类并将类注入到spring容器,上述示例可以如下使用
@configurationpropertiesscan("com.xx.fw.config") public class fwcoreapplication { public static void main(string[] args) { springapplication.run(fwcoreapplication.class, args); } }
@propertysource
@propertysource 主要用于读取指定的配置文件,需要结合@configurationproperties 注解一起使用实现配置文件和java bean的注入操作。
示例代码
属性文件user.properteis:
user.id=222 user.name=剑圣 user.age=28
实体类定义:
@component @configurationproperties(prefix = "user") @propertysource(value = {"classpath:user.properties"}) public class userconfig { private string id; private string name; private int age; }
测试:
@getmapping("getuserconfig") public void getuserconfig() { string json=fastjsonutil.tojsonstring(userconfig); logger.info("userconfig:{}",json); }
输出结果:
c.s.fw.controller.filecontroller - userconfig:{"age":28,"id":"123","name":"admin"}
总结
重点讲解了通过各种注解读取配置文件种属性值,每种方式都是各自的优缺点,项目中一定要统一规范使用,便于项目维护和排查问题。
到此这篇关于spring boot 如何正确读取配置文件属性的文章就介绍到这了,更多相关spring boot 读取文件属性内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!