Spring Cloud Enterprise Core Technology, Corresponding to the Special Subject Source of the Brief Book "Spring Cloud Core Technology"
14
stars
6
forks
source link
SpringBoot2.x基础篇:探索配置文件中随机数的实现方式 - 程序员 - 恒宇少年 | SpringBoot | SpringCloud | Java - 个人博客 #199
Open
hengboy opened 4 years ago
https://blog.yuqiyu.com/spring-boot-basic-configuring-random-values.html
随机数的使用你是不是经常用到?我们在进行运行SpringBoot单元测试时一般不会指定应用程序启动时的端口号,可以在application.properties文件内配置server.port的值为${random.int(10000)},代表了随机使用0~10000的端口号。 既然这种方式使用这么方便,那你知道${random.int}是通过什么方式实现的吗? 概述 配置文件方式在我们分析源码之