16.spring源码之@PropertySource注解
作者:互联网
上篇文字讲了@Component注解,我们接着往后面的代码看,回到doProcessConfigurationClass()方法
1.doProcessConfigurationClass()方法
2.进入processPropertySource()方法
2.1进入resolveRequiredPlaceholders()方法
进入resolveRequiredPlaceholders()方法
进入到doResolvePlaceHolders()方法
进入replacePlaceholders()方法,这个方法在讲属性文件的时候说过,这里就是把${key}替换成value值,替换占位符,属性文件可能存在这种引用
2.2进入addPropertySource()方法
其实@PropertySource注解就相当于xml配置文件中的<context:properties-placeholder location="classpath:application.properties">
3.应用
1.创建属性文件application.properties
2.创建一个类使用@PropertySource注解
3.测试
标签:PropertySource,spring,resolveRequiredPlaceholders,源码,进入,doProcessConfigurationCl 来源: https://www.cnblogs.com/tanyf/p/15143506.html