springboot源码分析9-random的使用以及原理

摘要:springboot框架为我们提供了很多的便利,其中有一个非常有意思的功能,那就是可以通过变量的方式来配置一个随机数random,然后使用random随机出各式各样数值。本位重点讲解一下random的使用以及框架内部的实现机制。

1.1. Springboot中random的使用

首先我们定义一个配置类,如下所示:

1 @Component

2 public class Config {

3  @Value("${random.value}")

4  private String value;

5  @Value("${random.int}")

6  private int randomInt;

7  @Value("${random.long}")

8  private long randomLong;

9  @Value("${random.uuid}")

10  private String randomuuid;

11  @Value("${random.int(10)}")

12  private int randomInt1;

13  @Value("${random.int[1024,65536]}")

14  private int randomIntRange;

15 

16  @Override

17  public String toString() {

18  return "Config [value=" + value + ", randomInt=" + randomInt + ", randomLong=" + randomLong + ", randomuuid="

19  + randomuuid + ", randomInt1=" + randomInt1 + ", randomIntRange=" + randomIntRange + "]";

20  }

21 }

上述类中我们配置的与random相关的表达式有:

random.value返回值是string类型;random.int返回值是int类型;random.long返回值是long类型;random.uuid返回值是string类型;random.random.int(10)返回值是int类型;random.int[1024,65536]返回值是int类型。

紧接着,我们书写一个springboot启动类并打印Config类。示例代码如下:

1 @SpringBootApplication

2 public class DemoApplication {

3  public static void main(String[] args) {

4  BainuoSpringApplication springApplication = new BainuoSpringApplication(DemoApplication.class);

5  ConfigurableApplicationContext configurableApplicationContext = springApplication.run(args);

6  Config config = configurableApplicationContext.getBean(Config.class);

7  System.out.println(config.toString());

8  }

9 }

运行上述类,程序的输出如下:

Config [value=d4143e016f2f89527af9290cdc5faf8d, randomInt=-1397177543, randomLong=-5400484272385792469, randomuuid=113b3970-ac05-4a31-8a6c-1145ee55b9f9, randomInt1=2, randomIntRange=36897]

 

1.2. Springboot中random内部实现机制

上述我们讲解了random的各种使用方式,心中不免有个疑惑。Springboot是如何处理这些random的呢?我们又该如何更好的使用呢?正所谓知其然,还要知其所以然。前面的系列文章中,我们详细讲解了环境属性的相关知识点,其中PropertySource类有一个子类RandomValuePropertySource,该类正是处理上文我们使用的random的。我们来快速学习下该类,示例代码如下:

1 public class RandomValuePropertySource extends PropertySource<Random> {

2  public static final String RANDOM_PROPERTY_SOURCE_NAME = "random";

3  private static final String PREFIX = "random.";

4  private static final Log logger = LogFactory.getLog(RandomValuePropertySource.class);

5  public RandomValuePropertySource(String name) {

6  super(name, new Random());

7  }

8  public RandomValuePropertySource() {

9  this(RANDOM_PROPERTY_SOURCE_NAME);

10  }

11  @Override

12 

13  private Object getRandomValue(String type) {

14  if (type.equals("int")) {

15  return getSource().nextInt();

16  }

17  if (type.equals("long")) {

18  return getSource().nextLong();

19  }

20  String range = getRange(type, "int");

21  if (range != null) {

22  return getNextIntInRange(range);

23  }

24  range = getRange(type, "long");

25  if (range != null) {

26  return getNextLongInRange(range);

27  }

28  if (type.equals("uuid")) {

29  return UUID.randomUUID().toString();

30  }

31  return getRandomBytes();

32  }

33 

34  private String getRange(String type, String prefix) {

35  if (type.startsWith(prefix)) {

36  int startIndex = prefix.length() + 1;

37  if (type.length() > startIndex) {

38  return type.substring(startIndex, type.length() - 1);

39  }

40  }

41  return null;

42  }

43 

44  private int getNextIntInRange(String range) {

45  String[] tokens = StringUtils.commaDelimitedListToStringArray(range);

46  int start = Integer.parseInt(tokens[0]);

47  if (tokens.length == 1) {

48  return getSource().nextInt(start);

49  }

50  return start + getSource().nextInt(Integer.parseInt(tokens[1]) - start);

51  }

52 

53  private long getNextLongInRange(String range) {

54  String[] tokens = StringUtils.commaDelimitedListToStringArray(range);

55  if (tokens.length == 1) {

56  return Math.abs(getSource().nextLong() % Long.parseLong(tokens[0]));

57  }

58  long lowerBound = Long.parseLong(tokens[0]);

59  long upperBound = Long.parseLong(tokens[1]) - lowerBound;

60  return lowerBound + Math.abs(getSource().nextLong() % upperBound);

61  }

62 

63  private Object getRandomBytes() {

64  byte[] bytes = new byte[32];

65  getSource().nextBytes(bytes);

66  return DigestUtils.md5DigestAsHex(bytes);

67  }

68 

69  public static void addToEnvironment(ConfigurableEnvironment environment) {

70  environment.getPropertySources().addAfter(

71  StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME,

72  new RandomValuePropertySource(RANDOM_PROPERTY_SOURCE_NAME));

73  logger.trace("RandomValuePropertySource add to Environment");

74  }

75 

76 }

下面重点讲解一下getProperty方法,该方法的处理逻辑非常的简单,首先判断需要获取的变量是否是以random开头的,如果是则开始调用getRandomValue方法进行处理,并截取random.这个字符串。示例代码如下:

1  public Object getProperty(String name) {

2  if (!name.startsWith(PREFIX)) {

3  return null;

4  }

5  return getRandomValue(name.substring(PREFIX.length()));

6  }

比如上文的${random.value},在这里处理之后,传递给getRandomValue方法的参数值是value;同理${random.int}在这里处理之后,传递给getRandomValue方法的参数值是int。好了,继续看getRandomValue方法吧,该方法内部实现中,会调用类似getSource方法,该方法返回值正式Random实例对象。示例代码如下:

1 public RandomValuePropertySource(String name) {

2  super(name, new Random());

3  }

了解了这些之后,getRandomValue方法的处理逻辑就非常简单了,总结梳理如下:

1. 如果是int则直接调用调用new Random().nextInt()。

2. 如果是long则直接调用调用new Random().nextLong()。

3. 如果是int或者long范围的则首先通过getRange获取到区间,然后还是调用new Random()中的区间随机数生成方法。

4. 如果是uuid则直接调用调用UUID.randomUUID().toString()。

5. 如果没有识别出来,则直接调用getRandomBytes生成一个字符串。

RandomValuePropertySource类的处理非常的简单而且经典,只要用一定的java基础均可以看明白。大家下去一步步debug即可看到起内部处理逻辑。但是这个类是怎么注入到当前springboot运行环境的呢?相信很多人有这样的疑问?这个涉及到了Springboot中的监听器使用,我们后续文章再来展开说明。


欢迎关注我的微信公众号,第一时间获得博客更新提醒,以及更多成体系的Java相关原创技术干货。 
扫一扫下方二维码或者长按识别二维码,即可关注。 

时间: 2024-10-25 08:09:08

springboot源码分析9-random的使用以及原理的相关文章

springboot源码分析2-springboot 之banner定制以及原理

1. springboot源码分析2-springboot 之banner定制以及原理 springboot在启动的时候,默认会在控制台输出默认的banner.也就是我们经常所说的图案,输出的图案如下所示:   .   ____          _            __ _ _  /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \  \\/  ___)| |_)| | | |

springboot源码分析3-springboot之banner类架构以及原理

继续上文的<<springboot源码分析2-springboot 之banner定制以及原理章节>>进行讲解,上一节我们详细详解了banner的三种输出模式.banner的输出模式设置.banner类的架构.SpringApplicationBannerPrinter类.ImageBanner以及TextBanner的处理方式.本小节我们来重点讲解一下各种banner处理类的相关实现逻辑以及设计意图和职责. 1.1 SpringBootBanner类 SpringBootBann

springboot源码分析6-springboot之PropertySource类初探

摘要:本小节重点梳理一下PropertySource类的相关结构以及职责,本文的学习前提是学习了springboot源码分析5-springboot之命令行参数以及原理一文. 在springboot源码分析5-springboot之命令行参数以及原理一文中,我们看到了实例化Source类的时候,会去先实例化其父类SimpleCommandLinePropertySource.SimpleCommandLinePropertySource类的构造函数中直接解析了命令行参数以及值,然后返回封装好的C

springboot源码分析10-ApplicationContextInitializer使用

摘要:spring中ApplicationContextInitializer接口是在ConfigurableApplicationContext刷新之前初始化ConfigurableApplicationContext的回调接口.当spring框架内部执行 ConfigurableApplicationContext#refresh() 方法的时候回去回调. 1.1. 实现方式一 首先,我们需要自定义一个类并且实现ApplicationContextInitializer接口.示例代码如下:

springboot源码分析11-ApplicationContextInitializer原理

摘要:springboot源码分析10-ApplicationContextInitializer使用一文中,我们详细地讲解了ApplicationContextInitializer的三种使用方式,本文我们重点看一下为何这三种方式都可以使用,也就是框架是如何处理的.包括内置的ContextIdApplicationContextInitializer.DelegatingApplicationContextInitializer. 1.1. 用户手动添加ApplicationContextIn

springboot源码分析7-环境属性构造过程(上)

使用springboot的目的就是在项目开发中,快速出东西,因此springboot对于配置文件的格式支持是非常丰富的,最常见的配置文件后缀有如下四种:properties.xml.yml.yaml,比如我们在springboot项目根目录中配置了一个application.properties文件,则springboot项目启动的时候就会自动将该文件的内容解析并设置到环境中,这样后续需要使用该文件中配置的属性的时候,只需要使用@value即可.同理application.xml.applica

springboot源码分析14-ApplicationContextInitializer原理Springboot中PropertySource注解多环境支持以及原理

摘要:Springboot中PropertySource注解的使用一文中,详细讲解了PropertySource注解的使用,通过PropertySource注解去加载指定的资源文件.然后将加载的属性注入到指定的配置类,@value以及@ConfigurationProperties的使用.但是也遗留一个问题,PropertySource注解貌似是不支持多种环境的动态切换?这个问题该如何解决呢?我们需要从源码中看看他到底是否支持. 首先,我们开始回顾一下上节课说的PropertySource注解的

springboot源码分析4-springboot之SpringFactoriesLoader使用

摘要:本文我们重点分析一下Spring框架中的SpringFactoriesLoader类以及META-INF/spring.factories的使用.在详细分析之前,我们可以思考一个问题?在我们设计一套API供别人调用的时候,如果同一个功能的要求特别多,或者同一个接口要面对很复杂的业务场景,这个时候我们该怎么办呢?其一:我们可以规范不同的系统调用,也就是传递一个系统标识:其二:我们在内部编码的时候可以使用不同的条件判断语句进行处理:其三:我们可以写几个策略类来来应对这个复杂的业务逻辑,比如同一

springboot源码分析1-springboot版本号获取

摘要:在使用springboot的时候,可能经常会忽略掉springboot的版本问题.本文我们看一下springboot jar包中定义的版本信息以及版本获取类.本文内容相对而言比较简单. 1.java中定义项目的版本 回想一下在java中如何定义项目的版本.这个比较简单,只需要在jar包增加MANIFEST.MF文件(根目录)并添加的如下内容即可: Manifest-Version: 1.0Implementation-Title: 分享牛Implementation-Version: 1.