搜尋

首頁  >  問答  >  主體

java - spring-boot怎样优雅得插入一个后台线程?

我有一个守护,可它需要插入数据到数据库.不知道怎样注入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又开机运行在一个独立线程里呢?

巴扎黑巴扎黑2770 天前720

全部回覆(4)我來回復

  • 天蓬老师

    天蓬老师2017-04-18 10:50:11

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

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

    回覆
    0
  • ringa_lee

    ringa_lee2017-04-18 10:50:11

    你的意思是想進行介面的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>

    回覆
    0
  • PHPz

    PHPz2017-04-18 10:50:11

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

    回覆
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-18 10:50:11

    這個線程是做什麼用的?

    回覆
    0
  • 取消回覆