@PostConstruct在servlet中执行时,在构造方法后,init方法前执行,那么在工具类中呢?
今天偶尔看到了springboot将常量注入静态工具类的代码,发现使用了PostConstruct注解,没搞懂在这个类的执行顺序
@Value("${constant.path}")private String path;private static String staticPath;@PostConstructpublic void getPath() { staticPath = this.path; }
jeck猫
慕妹3146593
相关分类