I have the following spring mvc configuration:
<task:scheduled-tasks scheduler="defaultScheduler">
<task:scheduled ref="myTaskWorker" method="someMethod"
fixed-rate="500" />
</task:scheduled-tasks>
When I execute the above it is not executed in every 500ms but only executed after the finishing of the previous one.
How can i resolve this?