自定义参数
application.properties中可以定义一些自己需要的属性,如:
book.name=springcloud
book.author=zhangsan
然后, 在应用中可以通过@Value 注解来加载这些自定义的参数, 比如:
@Component
public class Book {
@Value("${book.name}")
private String name;
@Value("${book.author}")
private String author;
....
}
参数引用
在 application.properties 中的各个参数之间可以直接通过使用 PlaceHolder 的方式来进行引用 , 就像下面的设置:
book.name=SpringCloud
book.author=ZhaiYongchao
book.desc=${book.author} is writing《${book.name}》
book.desc 参数引用了上文中定义的book.name和book.author 属性, 最后该
属性的值就是ZhaiYongchao is writing《SpringCloud》
使用随机数
${random}的配置方式主要有以下几种, 读者可作为参考使用。
#随机字符串
com.didispace.blog.value=${random.value}
#随机int
com.didispace.blog.number=${random.int}
#随机long
com.didispace.blog.bignumber=${random.long}
# 10以内的随机数
com.didispace.blog.tes七 1=${random.int(l0)}
# 10-20的随机数
com.didispace.blog.test2=${random.int[l0,20]}
命令行参数
除了在application.properties中设定端口参数还可以在命令行中设置server.port,如:
java -jar xxx.jar --server.port=8888
效果等同于在application.properties中添加server.port=8888
多环境配置
应用有时会分成开发,测试,预发布,生产等环境 ,各环境的数据库连接,端口等配置不同。为不同环境打包时,就需要配置多份不同环境的配置文件,再通过打包命令指定需要打包的内容之后进行区分打包
在 Spring Boot 中, 多环境配置的文件名需要满足 application-{profile}.properties的格式, 其中{profile}对应你的环境标识, 如下所示
application-dev.properties: 开发环境。
application-test.properties: 测试环境。
application-prod.properties: 生产环境。
至于具体哪个配置文件会被加载,需要在 application.properties 文件中通过spring.profiles.active 属性来设置, 其值对应配置文件中的{profile}值。 如spring.profiles.active=test 就会加载 application-test.properties配置文件内容。
application.properties中设置
spring.profiles.active= dev
意为默认以dev环境设置,或者以命令行方式来设定
java -jar xxx.jar --spring.profiles.active=dev
加载顺序
为了能够更合理地重写各属性的值,SpringBoot使用了下面这种较为特别的属性加载顺序:
1 在命令行中传入的参数。
2.SPRING APPLICATION JSON中的属性。 SPRING_APPLICATION—JSON是以JSON格式配置在系统环境变量中的内容。
3.java:comp/env中的JNDI 属性。
4.Java的系统属性, 可以通过System.getProperties()获得的内容。
5.操作系统的环境变量 。
6.通过random.*配置的随机属性。
7.位于当前应用 jar 包之外,针对不同{profile}环境的配置文件内容,例如application-{profile}.profiles或是YAML定义的配置文件。
8.位于当前应用 jar 包之内,针对不同{profile}环境的配置文件内容,例如application-{profile}.profiles或是YAML定义的配置文件。
9 位于当前应用jar包之外的application.profiles和YAML配置内容。
10位于当前应用jar包之内的application.profiles和YAML配置内容。
11在@Configuration注解修改的类中,通过@PropertySource注解定义的属性。
12应用默认属性,使用SpringApplication.setDefaultprofiles 定义的内容。
优先级按上面的顺序由高到低,数字越小优先级越高。