SpringBoot总结(六)——SpringBoot配置文件占位符

在配置文件中可以使用随机数:
SpringBoot总结(六)——SpringBoot配置文件占位符_第1张图片

school:
  last_name: 学校${
     random.value}    
  address: 江苏
  birth: 2020/01/01
  maps: {
     k1:v1,k2:v2}
  lists:
    - list1
    - list2
  student:
    name: ${
     school.last_name:hello}张三
    age: 17

SpringBoot总结(六)——SpringBoot配置文件占位符_第2张图片
在这里插入图片描述

注:占位符获取之前的值,如果没有可以使用:(冒号)指定默认值。
SpringBoot总结(六)——SpringBoot配置文件占位符_第3张图片
在这里插入图片描述

你可能感兴趣的:(Spring,Boot)