码迷,mamicode.com
首页 > 编程语言 > 详细

java-普通类文件@Autowired自动注入为null

时间:2018-07-11 21:22:21      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:ring   color   并且   spring   自动   ase   inf   base   common   

@Autowired注解在非Controller中注入为null

1、配置文件(类文件所在的包)

<context:component-scan base-package="net.nblh.utils.common" />

2、类文件

关于@PostConstruct:被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器调用一次,类似于Serclet的inti()方法。被@PostConstruct修饰的方法会在构造函数之后,init()方法之前运行。

@Component //申明为spring组件
public class GetSpeechRecognitionInfo {
    @Autowired
    private IConfDayService confdayService;
    
    // 静态初使化当前类
    public static GetSpeechRecognitionInfo getSpeechRecognitionInfo;
    //注解@PostConstruct,这样方法就会在Bean初始化之后被Spring容器执行
    @PostConstruct
    public void init() {
        getSpeechRecognitionInfo = this;
    }

    public static void syncDocument(String topicId) {
        List<TopicFile> fileList = getSpeechRecognitionInfo.confdayService.getConfFileByIssue(topicId);//议题材料列表
    }
}

 

java-普通类文件@Autowired自动注入为null

标签:ring   color   并且   spring   自动   ase   inf   base   common   

原文地址:https://www.cnblogs.com/lijianda/p/9296522.html

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