gpt4 book ai didi

java - JBoss 5 调度后台任务。一个接一个地执行,打破了计划

转载 作者:太空宇宙 更新时间:2023-11-04 08:17:54 25 4
gpt4 key购买 nike

例如,我有两个任务:

  <mbean code="org.jboss.varia.scheduler.Scheduler" name=":service=Scheduler">
<attribute name="StartAtStartup">true</attribute>
<attribute name="SchedulableClass">Scheduler1</attribute>
<attribute name="InitialStartDate">NOW</attribute>
<attribute name="SchedulePeriod">60</attribute>
<attribute name="InitialRepetitions">-1</attribute>
<attribute name="FixedRate">false</attribute>
</mbean>

<mbean code="org.jboss.varia.scheduler.Scheduler" name=":service=Scheduler2">
<attribute name="StartAtStartup">true</attribute>
<attribute name="SchedulableClass">Scheduler2</attribute>
<attribute name="InitialStartDate">NOW</attribute>
<attribute name="SchedulePeriod">3600</attribute>
<attribute name="InitialRepetitions">-1</attribute>
<attribute name="FixedRate">false</attribute>
</mbean>

即第一个每分钟安排一次,第二个每小时安排一次。

问题是,如果第二个任务的执行需要(比如说 5 分钟),那么第一个任务在此期间不会执行,而是会等到第二个任务完成。

有没有办法让它们并行工作?或者我应该转向 Quartz 或其他什么?

最佳答案

使用

<attribute name="TimerName">jboss:service=TimerNew</attribute>

它将并行启动计划。

关于java - JBoss 5 调度后台任务。一个接一个地执行,打破了计划,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10113274/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com