美文网首页
SpringBoot配置文件占位符

SpringBoot配置文件占位符

作者: MrJonny | 来源:发表于2018-11-07 17:14 被阅读0次

propertiesyaml配置文件中是可以使用占位符的

1、随机数

  • ${random.value} - 类似uuid的随机数,没有"-"连接
  • ${random.int} - 随机取整型范围内的一个值
  • ${random.long} - 随机取长整型范围内的一个值
  • ${random.long(100,200)} - 随机生成长整型100-200范围内的一个值
  • ${random.uuid} - 生成一个uuid,有短杠连接
  • ${random.int(10)} - 随机生成一个10以内的数
  • ${random.int(100,200)} - 随机生成一个100-200 范围以内的数

例子

#user.username=${random.value}
#user.username=${random.int}
#user.username=${random.long}
#user.username=${random.uuid}
#user.username=${random.int(10)}
#user.username=${random.int(100,200)}
user.username=${random.long(100,200)}

2、占位符

  • ${key:defaultValue} - 若key 不存在,则将defaultValue的值赋值给取值的对象

例子

  • ${user.username} 当在配置文件中用这个表达式,而user.username未定义的时候,取值时会将${user.username} 当做字符串处理
user.username=${test.xx:周伯通}

相关文章

  • SpringBoot系列之配置文件占位符使用

    SpringBoot系列之配置文件占位符使用 Springboot占位符支持的有随机数和配置的值等等,本博客主要介...

  • SpringBoot配置文件占位符

    在properties或yaml配置文件中是可以使用占位符的 1、随机数 ${random.value} - 类似...

  • SpringBoot中使用Maven的profile的配置

    注意: SpringBoot中默认的占位符为"@"

  • 莹莹

    占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符...

  • 莹莹

    占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符...

  • [踩坑] Spring Boot占位符问题

    问题 在某些情况中,Spring Boot需要加载动态配置文件,这里占位符${}就很关键,但是却发现占位符不生效,...

  • 及时止损哪有那么容易

    占位符占位符占位符占位符占位符占位符占位符占位符占位符占位符 晚上清理微博时,发现了我以前发的微博 心情如同标题 ...

  • 005SpringBoot之配置文件占位符

    一、配置文件占位符 1、配置文件 PS:${random.uuid}、${random.int}都是取得rando...

  • SpringBoot 配置文件无法解析占位符 - ${value

    Spring 框架提供了profile的功能,可以自定义profile加载不同环境的配置文件或者 Bean,Spr...

  • golang fmt

    占位符 普通占位符 布尔占位符 整数占位符 指针 其它标记

网友评论

      本文标题:SpringBoot配置文件占位符

      本文链接:https://www.haomeiwen.com/subject/jkgvxqtx.html