初识spring boot maven管理--属性文件配置

在使用springboot的时候可以使用属性文件配置对属性值进行动态配置,官方文档原文如下:

Spring Boot uses a very particular PropertySource order that is designed to allow sensible overriding of values, properties are considered in the the following order:

  1. Command line arguments.
  2. Java System properties (System.getProperties()).
  3. OS environment variables.
  4. @PropertySource annotations on your @Configuration classes.
  5. Application properties outside of your packaged jar (application.properties including YAML and profile variants).
  6. Application properties packaged inside your jar (application.properties including YAML and profile variants).
  7. Default properties (specified using SpringApplication.setDefaultProperties).
英语不太好,大概的意思是:springboot将会使用指定的 PropertySource加载顺序加载属性文件,此目的是为了可以动态赋值!下面是顺序关系:
1、命令行参数
2、java的系统属性文件
3、OS环境变量
4、使用@PropertySource 
5、在jar包外的application.properties
6、在jar包内的application.properties(位置在src目录下)
7、编码指定的位置 使用SpringApplication.setDefaultProperties方法

如果觉得不准确,请更正,谢谢!

属性文件配置好之后就可以在属性中使用
@Value("${name}")
private String name;
 name的值将根据properties文件进行动态赋值!







转载于:https://www.cnblogs.com/cmlblog/p/7663180.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值