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

@PostConstruct注解

时间:2021-06-18 19:42:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:width   lan   stc   blank   src   class   imp   注入   ice   

技术图片

 

这个注解是java的,不是spring的。

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

 

package com.example.studySpringBoot.util;
 
import com.example.studySpringBoot.service.MyMethorClassService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
import javax.annotation.PostConstruct;
 
@Component
public class MyUtils {
 
    private static MyUtils          staticInstance = new MyUtils();
 
    @Autowired
    private MyMethorClassService    myService;
 
    @PostConstruct
    public void init(){
        staticInstance.myService = myService;
    }
 
    public static Integer invokeBean(){
        return staticInstance.myService.add(10,20);
    }
}

转自:https://blog.csdn.net/qq360694660/article/details/82877222

 

@PostConstruct注解

标签:width   lan   stc   blank   src   class   imp   注入   ice   

原文地址:https://www.cnblogs.com/jiduoduo/p/14898389.html

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