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

普通类Autowired为null的情况

时间:2019-02-20 18:36:36      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:cto   ons   logger   wired   bsp   span   方法   sage   this   

@Component // 注入为spring bean
public class TestMsg{
    private static final Logger logger = LoggerFactory.getLogger(TestMsg.class);
    @Autowired
    private TestService testService;
    private static TestMsg testMsg;  // 保存初始化时注入到的testService
   
    public void handlerMessage(MessageVO message) {
        testMsg.testService.doSomething(); // 用testMsg里set的testService去执行service方法
    }
    @PostConstruct
    public void init() {
        testMsg = this;
        testMsg.testService= this.testService;
    }
}

 

普通类Autowired为null的情况

标签:cto   ons   logger   wired   bsp   span   方法   sage   this   

原文地址:https://www.cnblogs.com/jinwenb/p/10408298.html

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