我有一个简单明了的“普惠制”指标:
<context:component-scan base-package="com/test"/>
<task:scheduled-tasks>
<task:scheduled ref="myScheduler" method="doMyTask" fixed-rate="300000"/>
</task:scheduled-tasks>
<task:scheduler id="taskScheduler" pool-size="1"/>
<task:executor id="executorWithPoolSizeRange"
pool-size="1"
queue-capacity="100"/>
<bean id="cleanupClass" class="com.test.CleanupClass">
<property name="myProperty" value="3600"/>
</bean>
我每5分钟就座一只read。 然而,我所看到的是,任务连续每5分钟一次。 是否有任何人知道在上文XML描述中是否有任何遗漏?
我指的是我想用“后附说明”来做的,但我不使用固定汇率的说明,因为我想在《守则》之外可以证明这一点。
感谢。