石英的耐用性有什么用 xml
what is the use of durability in quartz xml
这里 属性 提到 durability=true。
<bean name="complexJobDetail" class="org.springframework.scheduling.quartz.JobDetailFactoryBean">
<property name="jobClass" value="com.websystique.spring.quartz.ScheduledJob" />
<property name="jobDataMap">
<map>
<entry key="anotherBean" value-ref="anotherBean1" />
<entry key="myBean" value-ref="myBean" />
</map>
</property>
<property name="durability" value="true" />
</bean>
能否请您解释一下 durability=true 的用途。
来自here:
Specify the job's durability, i.e. whether it should remain stored in
the job store even if no triggers point to it anymore.
这里 属性 提到 durability=true。
<bean name="complexJobDetail" class="org.springframework.scheduling.quartz.JobDetailFactoryBean">
<property name="jobClass" value="com.websystique.spring.quartz.ScheduledJob" />
<property name="jobDataMap">
<map>
<entry key="anotherBean" value-ref="anotherBean1" />
<entry key="myBean" value-ref="myBean" />
</map>
</property>
<property name="durability" value="true" />
</bean>
能否请您解释一下 durability=true 的用途。
来自here:
Specify the job's durability, i.e. whether it should remain stored in the job store even if no triggers point to it anymore.