springboot-读取配置文件属性二.自定义配置文件test.properties
一.配置属性写在系统自带的yml配置文件里面1.yml配置文件自定义属性#自定义属性book: name: name author: author #随机字符串 value: ${random.value} #随机int值 intValue: ${random.int} #随机long值 longValue: ${random.long} #随机uuid uuid: ${random.uuid} #1000以内随机数 randomNumber: $