我有一个守护,可它需要插入数据到数据库.不知道怎样注入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又开机运行在一个独立线程里呢?
天蓬老师2017-04-18 10:50:11
不好意思各位,我自己找到方法了.:http://stackoverflow.com/ques...
依照回答的方法.改為
@Component
class ThreadRun implements DisposableBean.....然後在構造裡啟動線程,destroy裡關閉線程,而且能用到自動注入
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>