spring-boot怎样优雅得插入一个后台线程
发布网友
发布时间:2022-04-24 04:52
我来回答
共1个回答
热心网友
时间:2023-10-29 19:56
创建一个抽象类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>
热心网友
时间:2023-10-29 19:56
创建一个抽象类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>
热心网友
时间:2023-10-29 19:56
创建一个抽象类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>
热心网友
时间:2023-10-29 19:56
创建一个抽象类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>