码迷,mamicode.com
首页 > 其他好文 > 详细

@PostConstruct注解

时间:2021-06-08 23:18:06      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:静态   wired   应用   red   自己   init   auto   bean   spring   

@PostConstruct基本:
@PostConstruct注解不是Spring提供的;是Java自己提供的注解。

Java中该注解的说明:
1.@PostConstruct该注解被用来修饰一个非静态的void()方法。
2.被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器执行一次。
3.PostConstruct在构造函数之后执行,init()方法之前执行。

通常我们会是在Spring框架中使用到@PostConstruct注解 该注解的方法在整个Bean初始化中的执行顺序:

Constructor(构造方法) -> @Autowired(依赖注入) -> @PostConstruct(注释的方法)

应用:在静态方法中调用依赖注入的Bean中的方法。

@PostConstruct注解

标签:静态   wired   应用   red   自己   init   auto   bean   spring   

原文地址:https://www.cnblogs.com/Marlo/p/14862813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!