@PostConstruct、@Autowired以及构造函数的执行顺序

更新时间:2023-05-20 20:22:00 阅读: 评论:0

@PostConstruct、@Autowired以及构造函数的执⾏顺序结论先⾏:构造函数 -> PostConstruct -> @Autowired 依次执⾏
由于项⽬需要启动时加载⼀个配置信息,所以想到了⽤@PostConstruct,如下所⽰:
@Configuration
public class BUrCenterConfig {
@Value("${b.ur.url}")
public String urCenterUrl;
@Value("${b.ur.appId}")
public String urCenterAppId;
@PostConstruct
public void tDefaultConfig() {
UrCenterConfig.SetInterfaceUrl(urCenterUrl);
UrCenterConfig.SetDefaultAppId(urCenterAppId);
挥汗如雨}
}
BeanTest.java
@Service
public class BeanTest {
@Autowired
private BeanTest2 beanTest2;
public BeanTest() {
System.out.println("this is BeanTest construct. ");
1677年}
@PostConstruct
private void init() {
System.out.println("this is BeanTest init function. ");脸上长斑怎么祛斑
}
女大学生的沙龙室2
}
BeanTest2.java
@Service
public class BeanTest2 {
@PostConstruct
private void init() {
System.out.println("this is BeanTest2 init function. ");
}
public BeanTest2() {
椭圆焦距
System.out.println("this is BeanTest2 construct. ");
}
void test2() {
天寒地冻造句
System.out.println("this is BeanTest2 test2 function. ");
}
}
启动项⽬,输出结果如下:
this is BeanTest construct.
什么是目标奥林匹斯神话
this is BeanTest2 construct.
this is BeanTest2 init function.
this is BeanTest init function.
this is BeanTest2 test2 function.

本文发布于:2023-05-20 20:22:00,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/711381.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:加载   配置   信息   输出   顺序
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图