SpringBoot隨機數

# 隨機字符串
com.didispace.blog.value=${random.value}
# 隨機int
com.didispace.blog.number=${random.int}
# 隨機long
com.didispace.blog.bignumber=${random.long}
# 10之內的隨機數
com.didispace.blog.test1=${random.int(10)}
# 10-20的隨機數
com.didispace.blog.test2=${random.int[10,20]}
屏蔽命令行訪問屬性的設置,只須要這句設置就能屏蔽:SpringApplication.setAddCommandLineProperties(false)。
相關文章
相關標籤/搜索