spring boot @ConfigurationProperties

参考:https://www.jianshu.com/p/b71845c142d0

spring boot 1.5 之后 @ConfigurationProperties 没有了locations 属性,也就是无法指定配置文件路径。

替代方式是@PropertySource()

但是 spring 的思想是不希望一个配置类绑定到一个配置文件上面。

参考:https://blog.csdn.net/wo541075754/article/details/52174900

@PostConstrut

在Servlet初始化之前的操作

原文地址:https://www.cnblogs.com/inspirationBoom/p/11157009.html