java - spring-boot怎样优雅得插入一个后台线程?
巴扎黑
巴扎黑 2017-04-18 10:48:11
0
4
726

我有一个守护,可它需要插入数据到数据库.不知道怎样注入Bean服务,所以目前是这样的:

public static void main(String[] args) {
         Thread daemon=new Thread(new DaemonRun());        
            daemon.setDaemon(true);
            daemon.start();   
        SpringApplication.run(Application.class, args);
    }
    ....
public class DaemonRun implements Runnable {
    private DataService dataService;
    public synchronized  DataService getDataService(){
        if(dataService==null)
                dataService=(DataService)SpringApplicationContextHolder.getSpringBean("dataService");
        return dataService;
    }

有没有办法让DataService 自动注入DaemonRun同时DaemonRun又开机运行在一个独立线程里呢?

巴扎黑
巴扎黑

全部回覆(4)
Peter_Zhu

不好意思各位,我自己找到方法了.:http://stackoverflow.com/ques...

依照回答的方法.改為
@Component
class ThreadRun implements DisposableBean.....然後在構造裡啟動線程,destroy裡關閉線程,而且能用到自動注入

左手右手慢动作

你的意思是想進行介面的bean自動注入吧? 你可以參考spring關於抽象類別的bean或介面物件的注入
建立一個抽象類別DataService implements Runnable 進行注入。然後extend它。
因為springbean 的生命週期是在beanFactory創建的時候就創建完成,你的物件是創建的時候才進行物件需要注入,這點與spring的概念衝突。

以下摘自stackoverflow,

    
Mark the abstract base class definition as abstract by using the abstract attribute , and in the concrete class definition , make the parent attribute be the name of the abstract class 's bean name

Something like this:

<bean id="abstractBaseClass" abstract="true" class="pacakge1.AbstractBaseClass">
  <property name="mailserver" value="DefaultMailServer"/>
</bean>

<bean id="concreteClass1" class="pacakge1.ConcreteClass1" parent="abstractBaseClass">     
  <!--Override the value of the abstract based class if necessary-->
  <property name="mailserver" value="AnotherMailServer"/>
</bean>
PHPzhong

使用自動注入,把scope配置成prototype試試看。

伊谢尔伦

這個線程是做什麼用的?

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板